﻿    /* Reset & Base Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    :root {
      --primary: #8B5FBF;
      --primary-dark: #6B4694;
      --secondary: #FFB6C1;
      --accent: #98D8C8;
      --text: #333333;
      --text-light: #666666;
      --background: #FFFFFF;
      --background-alt: #F9F7FE;
      --border: #E8E2F5;
      --shadow: rgba(139, 95, 191, 0.1);
      --radius: 12px;
      --transition: all 0.3s ease;
    }
    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
      line-height: 1.6;
      color: var(--text);
      background: var(--background);
      max-width: 100vw;
      overflow-x: hidden;
    }
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    /* Main Navigation */
    .main-nav {
      background: var(--primary-dark);
      padding: 1rem 0;
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .main-nav .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .nav-list {
      display: flex;
      list-style: none;
      gap: 2rem;
    }
    .nav-list a {
      color: white;
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
    }
    .nav-list a:hover {
      color: var(--secondary);
    }
    
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0;
      margin-left: auto; /* pushes it to the right */
    }
    .hamburger span {
      width: 25px;
      height: 3px;
      background: white;
      margin: 3px 0;
      transition: var(--transition);
    }
    
    /* Typography */
    h1, h2, h3 {
      font-weight: 700;
      line-height: 1.2;
      color: var(--primary-dark);
    }
    h1 {
      font-size: clamp(2rem, 5vw, 3rem);
      margin-bottom: 1rem;
    }
    h2 {
      font-size: clamp(1.5rem, 4vw, 2.2rem);
      margin: 1rem;
	  text-align: center;
    }

    p {
      margin-bottom: 1.5rem;
      color: var(--text-light);
      font-size: clamp(1rem, 2vw, 1.1rem);
    }
    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 7px 14px;
      border-radius: var(--radius);
      font-weight: 600;
      text-decoration: none;
      font-size: 1rem;
      cursor: pointer;
      transition: var(--transition);
      border: 2px solid transparent;
      gap: 8px;
      min-height: 52px;
    }
    .btn.primary {
      background: var(--primary);
      color: white;
    }
    .btn.primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px var(--shadow);
    }
    .btn.outline {
      background: transparent;
      border-color: var(--primary);
      color: var(--primary);
    }
    .btn.outline:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-2px);
    }
    .btn.secondary {
      background: var(--accent);
      color: var(--text);
    }
    /* Header & Hero */
    .hero {
      background: linear-gradient(135deg, var(--background-alt) 0%, #F0EBFA 100%);
      padding: clamp(1rem, 1vw, 2rem) 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero h1 {
      margin-bottom: 1rem;
      background: linear-gradient(90deg, var(--primary), var(--primary-dark));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero p {
      font-size: clamp(1.1rem, 3vw, 1.3rem);
      max-width: 1024px;
      margin: 0 auto 2rem;
      color: var(--text);
    }
    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
      margin-top: 1rem;
    }

    /* Printables Section */
    .printables {
      padding: clamp(3rem, 6vw, 5rem) 0;
      background: white;
      text-align: center;
    }
    .printable-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
      margin-top: 2rem;
    }

    .privacy-note {
      width: 100%;
      font-size: 0.9rem;
      color: var(--text-light);
      margin-top: 1rem;
    }

    /* Footer */
    .site-footer {
      background: var(--primary-dark);
      color: white;
      padding: 3rem 0 2rem;
      text-align: center;
    }
    .site-footer .container {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
    .site-footer nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
    }
    .site-footer a {
      color: white;
      text-decoration: none;
      opacity: 0.9;
      transition: var(--transition);
      font-weight: 500;
    }
    .site-footer a:hover {
      opacity: 1;
      text-decoration: underline;
    }
    .site-footer p {
      margin: 0;
      font-size: 1rem;
      font-weight: 500;
      color: white;
      text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    }

    /* Desktop Styles */
    @media (min-width: 768px) {
      .container {
        padding: 0 40px;
      }
      .hero-cta {
        flex-wrap: nowrap;
      }

      .site-footer .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }
    }


    /* Accessibility */
    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
     
      .step-card {
        transition: none !important;
      }
    }
   
/* =========================
   MOBILE IMPROVEMENTS ONLY
   (Keeps all JS + content)
   ========================= */
/* Improve tap targets */
button,
select,
.btn {
  min-height: 44px;
}
/* Reduce horizontal overflow risk */
body {
  overflow-x: hidden;
}

/* HERO */
@media (max-width: 767px) {
  .hero {
    padding: 3rem 1rem;
  }
  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }
  .hero-cta .btn {
    width: 100%;
  }
}



/* Mobile-specific adjustments */
@media screen and (max-width: 767px) {
  /* navigation bar */
  .main-nav {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    padding: 0.8rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }
  
  /* hamburger button */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: auto;
  }
  
  .hamburger:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
  }
  
  .hamburger span {
    width: 22px;
    height: 2.5px;
    background: white;
    margin: 2.5px 0;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  /* mobile menu dropdown */
  .nav-list {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(107, 70, 148, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 1rem 0;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 80vh;
    overflow-y: auto;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Show navigation when hamburger is active */
  .nav-list.active {
    display: flex;
  }
  
  /* menu items */
  .nav-list li {
    padding: 0;
    margin: 0 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-list li:last-child {
    border-bottom: none;
  }
  
  .nav-list a {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 10px;
    position: relative;
  }
  
  .nav-list a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--secondary);
    padding-left: 25px;
  }
  
  /* Add subtle hover effect indicator */
  .nav-list a::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .nav-list a:hover::after {
    opacity: 1;
  }
  
  /* Active hamburger animation */
  .hamburger.active {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--secondary);
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--secondary);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: var(--secondary);
  }
  
  /* Smooth transitions for hamburger */
  .hamburger span {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Menu overlay background */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 999;
  }
  
  .nav-overlay.active {
    display: block;
    animation: fadeIn 0.3s ease;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
    
  /* Container padding adjustment */
  .container {
    padding: 0 15px;
  }
}
    

/* PRINTABLE BUTTONS */
@media (max-width: 767px) {
  .printable-actions {
    flex-direction: column;
  }
  .printable-actions .btn {
    width: 100%;
  }
}
