
  * {
    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;
  }

  /* ========== 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 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-outline-light {
    background: transparent;
    border: 1.5px solid white;
    color: white;
    padding: 10px 24px;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .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; }

  @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; }
  }

  /* Intro Section */
  .intro-section {
    padding: 70px 5%;
    background: #fefcf7;
    text-align: center;
  }
  .intro-card {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 40px;
    padding: 48px 40px;
    box-shadow: 0 12px 28px -12px rgba(0,0,0,0.05);
    border: 1px solid #efeae2;
  }
  .intro-card h2 {
    font-size: 2.2rem;
    color: #1a3b5d;
    margin-bottom: 20px;
  }
  .intro-card p {
    font-size: 1.1rem;
    color: #2c3e4e;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .commitment-badge {
    background: #eef3f9;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 24px;
    font-weight: 600;
    color: #1a3b5d;
    margin-top: 12px;
  }
  .email-link {
    color: #1a3b5d;
    font-weight: 700;
    text-decoration: underline;
    transition: 0.2s;
  }
  .email-link:hover { color: #0f2c46; }

  /* Committees Grid Section */
  .committees-grid-section {
    padding: 60px 5% 80px;
    background: #faf8f2;
  }
  .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;
  }
  .committees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
  }
  .committee-card {
    background: white;
    border-radius: 32px;
    padding: 36px 28px;
    transition: all 0.25s ease;
    border: 1px solid #e6e0d6;
    box-shadow: 0 8px 20px -10px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
  }
  .committee-card:hover {
    transform: translateY(-6px);
    border-color: #cdc4b6;
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
  }
  .committee-icon {
    background: #eef3f9;
    width: 70px;
    height: 70px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
  }
  .committee-icon i {
    font-size: 2.2rem;
    color: #1a3b5d;
  }
  .committee-card h3 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1e2b;
  }
  .committee-card p {
    color: #3a546d;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
  }
  .skills-tag {
    display: inline-block;
    background: #f3f0ea;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #1a3b5d;
    margin-top: 8px;
    align-self: flex-start;
  }

  /* Impact Section */
  .impact-section {
    background: linear-gradient(115deg, #1a3b5d 0%, #26648b 100%);
    color: white;
    padding: 80px 5%;
    text-align: center;
  }
  .impact-section h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
  }
  .impact-section p {
    max-width: 680px;
    margin: 0 auto 32px;
    font-size: 1.1rem;
    opacity: 0.9;
  }
  .btn-light-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 32px;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.2s;
  }
  .btn-light-outline:hover {
    background: white;
    color: #1a3b5d;
  }

  /* Footer */
  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) {
    .intro-card { padding: 32px 24px; }
    .committees-grid-section { padding: 40px 5% 60px; }
    .section-header h2 { font-size: 2rem; }
    .impact-section h2 { font-size: 1.8rem; }
  }
  