    /* ===== RESET & BASE ===== */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Inter', sans-serif;
    background-color: #fefcf7;
    color: #1a1e2b;
    scroll-behavior: smooth;
    line-height: 1.5;
  }

  /* FULL WIDE LAYOUT */
  .full-wide {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .wide-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 5%;
  }

  /* Buttons */
  .btn-primary {
    background: #1a3b5d;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .btn-primary:hover {
    background: #0f2c46;
    transform: scale(1.02);
  }

  .btn-outline {
    background: transparent;
    border: 1.5px solid #1a3b5d;
    color: #1a3b5d;
    padding: 10px 24px;
    border-radius: 60px;
    font-weight: 600;
    transition: 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .btn-outline:hover {
    background: #1a3b5d;
    color: white;
  }

  /* Card style */
  .card {
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
  }

  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 40px -16px rgba(0, 0, 0, 0.12);
  }

  /* ========== NAVIGATION WITH DROPDOWN ========== */
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 5%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(2px);
    position: sticky;
    top: 0;
    z-index: 1002;
    border-bottom: 1px solid #f0e9df;
  }

  .menu-toggle {
    background: transparent;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #1a3b5d;
    display: none;
    z-index: 1001;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
  }

  .logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .logo-img {
    height: 48px;
    width: auto;
    display: block;
  }

  .logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #1a3b5d, #2b5a7a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
  }

  .nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #1a3b5d;
    transition: color 0.2s;
  }

  .nav-links a:hover {
    color: #1a1e2b;
  }

  /* Dropdown Menu Styles - Desktop */
  .dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
  }

  .dropdown > a i {
    font-size: 0.75rem;
    transition: transform 0.2s;
  }

  .dropdown:hover > a i {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: white;
    min-width: 280px;
    border-radius: 20px;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    z-index: 1003;
    border: 1px solid #f0ede5;
  }

  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #2c3e4e;
    font-size: 0.9rem;
    transition: all 0.2s;
  }

  .dropdown-menu a:hover {
    background: #f5f3ef;
    color: #1a3b5d;
    padding-left: 26px;
  }

  /* Mobile Styles */
  @media (max-width: 768px) {
    .menu-toggle {
      display: flex;
    }
    .navbar {
      padding: 12px 5%;
    }
    .logo-container {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }
    .logo-text {
      font-size: 1rem;
    }
    .logo-img {
      height: 38px;
    }
    .nav-links {
      position: fixed;
      top: 0;
      left: -300px;
      width: 280px;
      height: 100vh;
      background: white;
      box-shadow: 4px 0 30px rgba(0, 0, 0, 0.1);
      flex-direction: column;
      justify-content: flex-start;
      gap: 16px;
      transition: left 0.3s ease;
      z-index: 1000;
      padding: 80px 24px 40px;
      align-items: flex-start;
      overflow-y: auto;
    }
    .nav-links.open {
      left: 0;
    }
    .nav-links > a, .nav-links .dropdown > a {
      font-size: 1.1rem;
      width: 100%;
      padding: 8px 0;
    }
    
    .dropdown {
      width: 100%;
      display: block;
    }
    .dropdown > a {
      justify-content: space-between;
      width: 100%;
      pointer-events: auto;
    }
    .dropdown-menu {
      position: static;
      box-shadow: none;
      padding-left: 20px;
      margin-top: 8px;
      margin-bottom: 8px;
      background: #f9f9f7;
      border-radius: 16px;
      opacity: 1;
      visibility: visible;
      transform: none;
      display: none;
      border: none;
      width: 100%;
      transition: none;
    }
    .dropdown.open .dropdown-menu {
      display: block;
    }
    .dropdown-menu a {
      padding: 10px 16px;
      font-size: 0.95rem;
    }
    .menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      z-index: 999;
      display: none;
    }
    .menu-overlay.active {
      display: block;
    }
    .mobile-nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
      padding-bottom: 16px;
      border-bottom: 1px solid #eee;
      width: 100%;
    }
    .mobile-nav-logo img {
      height: 40px;
      width: auto;
    }
    .mobile-nav-logo span {
      font-weight: 700;
      font-size: 1.1rem;
      color: #1a3b5d;
    }
  }

  .mobile-nav-logo {
    display: none;
  }

  /* PAGE HERO - Membership specific */
  .membership-hero {
    background: linear-gradient(125deg, #0f2c42 0%, #1a4b6e 100%);
    color: white;
    padding: 80px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .membership-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" opacity="0.08"><path fill="white" d="M60 70 L90 50 L120 70 L110 105 L70 105 L60 70Z"/><circle cx="150" cy="40" r="12"/><circle cx="40" cy="130" r="18"/><path d="M170 150 L190 140 L180 170 L170 150Z"/></svg>');
    background-repeat: repeat;
    background-size: 60px;
    pointer-events: none;
  }
  .membership-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
  }
  .membership-hero p {
    font-size: 1.25rem;
    max-width: 680px;
    margin: 0 auto;
    opacity: 0.92;
    position: relative;
    z-index: 2;
  }
  @media (max-width: 768px) {
    .membership-hero h1 { font-size: 2.2rem; }
    .membership-hero p { font-size: 1rem; }
  }

  /* MEMBERSHIP PLANS - 3 column grid */
  .plans-section {
    padding: 80px 5%;
    background: #fefcf7;
  }
  .plans-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: stretch;
  }
  .plan-card {
    background: white;
    border-radius: 36px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.25s ease;
    border: 1px solid #edeae2;
    box-shadow: 0 15px 30px -15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
  }
  .plan-card:hover {
    transform: translateY(-8px);
    border-color: #d4cdbc;
    box-shadow: 0 30px 40px -18px rgba(0,0,0,0.12);
  }
  .plan-badge {
    background: #1a3b5d10;
    color: #1a3b5d;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
  }
  .plan-price {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1a3b5d;
    margin-bottom: 8px;
  }
  .plan-price span {
    font-size: 1rem;
    font-weight: 500;
    color: #5b6f82;
  }
  .plan-desc {
    color: #2c3e4e;
    margin: 16px 0 24px;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .feature-list-membership {
    text-align: left;
    list-style: none;
    margin: 20px 0 32px;
    flex-grow: 1;
  }
  .feature-list-membership li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: #2c3e4e;
  }
  .feature-list-membership i {
    color: #1a3b5d;
    font-size: 1.1rem;
    width: 22px;
  }
  .btn-plan {
    margin-top: 12px;
    width: 100%;
    justify-content: center;
  }
  .student-note {
    background: #f0f4f9;
    border-radius: 24px;
    padding: 16px 20px;
    text-align: center;
    margin-top: 16px;
    font-size: 0.85rem;
    color: #1a3b5d;
    font-weight: 500;
  }

  /* BENEFITS GRID - expanded from original content */
  .benefits-section {
    background: #faf8f2;
    padding: 80px 5%;
  }
  .section-header {
    text-align: center;
    margin-bottom: 56px;
  }
  .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a3b5d;
    margin-bottom: 16px;
  }
  .accent-line {
    width: 70px;
    height: 3px;
    background: #1a3b5d;
    margin: 0 auto;
    border-radius: 4px;
  }
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1300px;
    margin: 0 auto;
  }
  .benefit-card {
    background: white;
    border-radius: 28px;
    padding: 32px 28px;
    transition: all 0.2s;
    border: 1px solid #efece4;
  }
  .benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 25px -12px rgba(0,0,0,0.07);
  }
  .benefit-icon {
    width: 56px;
    height: 56px;
    background: #eef3f9;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }
  .benefit-icon i {
    font-size: 1.8rem;
    color: #1a3b5d;
  }
  .benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1e2b;
  }
  .benefit-card p {
    color: #3a546d;
    line-height: 1.5;
  }

  /* educational partners highlight (SMU & CNM) */
  .partner-highlight {
    background: #ffffff;
    border-radius: 32px;
    margin-top: 48px;
    padding: 32px 28px;
    border: 1px solid #e2ddd2;
    text-align: center;
  }
  .partner-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 28px 0 20px;
    align-items: center;
  }
  .partner-logos span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a3b5d;
  }
  .discount-badge {
    background: #eef3f9;
    border-radius: 100px;
    padding: 6px 18px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    margin: 8px 6px;
  }

  /* CTA after benefits */
  .join-cta {
    text-align: center;
    padding: 70px 5%;
    background: linear-gradient(115deg, #f5f2ea 0%, #fefcf7 100%);
  }
  .join-cta h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .join-cta .btn-primary {
    font-size: 1.1rem;
    padding: 14px 38px;
  }

  /* FOOTER (same as layout) */
  footer {
    background: #11161f;
    color: #cbd5e1;
    padding: 60px 5% 40px;
    width: 100%;
  }
  .footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }
  @media (max-width: 768px) {
    .plans-section { padding: 60px 5%; }
    .section-header h2 { font-size: 2rem; }
    .benefits-section { padding: 60px 5%; }
    .partner-logos { gap: 20px; }
  }
  
  /* ========== HERO GALLERY STYLES ========== */
.hero-gallery {
  width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
  background-color: #11161f;
}

.gallery-container {
  position: relative;
  width: 100%;
  height: 620px;
}

.gallery-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.gallery-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Dark overlay for text readability */
.gallery-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.65), rgba(0,0,0,0.45));
  z-index: 1;
}

/* Overlay Text Content */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 15;
  color: white;
  padding: 0 20px;
}

.hero-overlay .hero-badge {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  display: inline-block;
  padding: 8px 24px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.3);
}

.hero-overlay h1 {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-shadow: 0 2px 15px rgba(0,0,0,0.4);
}

.hero-overlay p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 32px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.hero-overlay .btn-primary {
  background: white;
  color: #1a3b5d;
  border: none;
  padding: 12px 28px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-overlay .btn-primary:hover {
  background: #1a3b5d;
  color: white;
  transform: scale(1.02);
}

.hero-overlay .btn-outline-light {
  background: transparent;
  border: 1.5px solid white;
  color: white;
  padding: 10px 24px;
  border-radius: 60px;
  font-weight: 600;
  text-decoration: none;
  margin-left: 16px;
  transition: 0.2s;
}

.hero-overlay .btn-outline-light:hover {
  background: white;
  color: #1a3b5d;
}

/* Gallery Controls: Arrows & Dots */
.gallery-controls {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 14px;
  z-index: 25;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.55);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  padding: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.gallery-dot.active-dot {
  background: #ffffff;
  width: 30px;
  border-radius: 20px;
  box-shadow: 0 0 6px rgba(255,255,255,0.5);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  color: white;
  border: none;
  font-size: 1.4rem;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 25;
  border-radius: 60px;
  backdrop-filter: blur(6px);
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-arrow:hover {
  background: #1a3b5d;
  transform: translateY(-50%) scale(1.05);
}

.prev-arrow { left: 24px; }
.next-arrow { right: 24px; }

/* Mobile Responsive */
@media (max-width: 768px) {
  .gallery-container { height: 480px; }
  .hero-overlay h1 { font-size: 2.2rem; }
  .hero-overlay p { font-size: 1rem; margin-bottom: 24px; }
  .gallery-arrow { padding: 6px 14px; font-size: 1rem; }
  .prev-arrow { left: 12px; }
  .next-arrow { right: 12px; }
  .hero-overlay .btn-outline-light { margin-left: 8px; padding: 8px 18px; }
}
