* {
  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;
  pointer-events: none;
}

.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);
  pointer-events: auto;
}

.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;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  pointer-events: auto;
}

.hero-overlay .btn-primary:hover {
  background: #1a3b5d;
  color: white;
}

.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;
  pointer-events: auto;
}

.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; }
  .hero-overlay .btn-outline-light { margin-left: 8px; padding: 8px 18px; }
}

/* ========== COMMITTEES PAGE STYLES ========== */
/* 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;
}

/* ========== PAGE HERO (Static fallback) ========== */
.page-hero {
  background: linear-gradient(135deg, #1a3b5d 0%, #2b5a7a 100%);
  color: white;
  padding: 80px 5%;
  text-align: center;
}

.page-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .page-hero h1 { font-size: 2rem; }
  .page-hero p { font-size: 1rem; }
}

/* ========== CONTENT SECTIONS (Shared) ========== */
.content-section {
  padding: 70px 5%;
  border-bottom: 1px solid #f0ede5;
}

.content-section:last-child {
  border-bottom: none;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-sub {
  color: #5b6f82;
  margin-bottom: 56px;
  font-size: 1.2rem;
  max-width: 700px;
}

/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.category-card {
  background: white;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.05);
  transition: all 0.2s;
  border: 1px solid #f0ede5;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}

.category-icon {
  width: 60px;
  height: 60px;
  background: #eef3f9;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.category-icon i {
  font-size: 1.8rem;
  color: #1a3b5d;
}

.category-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a3b5d;
}

.category-card ul {
  padding-left: 20px;
  color: #3a546d;
  line-height: 1.6;
}

.category-card li {
  margin-bottom: 8px;
}

/* Two Column Layout */
.two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  background: white;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
  height: 100%;
}

.info-card:hover {
  transform: translateY(-4px);
}

.info-card i {
  font-size: 2rem;
  color: #1a3b5d;
  margin-bottom: 20px;
}

.info-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1e2b;
}

.info-card p, .info-card li {
  color: #3a546d;
  line-height: 1.6;
}

.full-width-content {
  max-width: 1000px;
  margin: 0 auto;
}

.full-width-content p {
  margin-bottom: 20px;
  color: #3a546d;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Best Practices Grid */
.best-practices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.practice-item {
  background: #faf8f2;
  border-radius: 20px;
  padding: 24px;
  transition: all 0.2s;
}

.practice-item:hover {
  background: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.practice-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a3b5d;
  display: flex;
  align-items: center;
  gap: 10px;
}

.practice-item p {
  color: #3a546d;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Strategy Grid */
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.strategy-item {
  background: #faf8f2;
  border-radius: 20px;
  padding: 24px;
  transition: all 0.2s;
}

.strategy-item:hover {
  background: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.strategy-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a3b5d;
}

.strategy-item p {
  color: #3a546d;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, #eef3f9, #e6eefa);
  border-radius: 32px;
  padding: 40px;
  margin: 40px 0;
  text-align: center;
}

.highlight-box h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: #1a3b5d;
}

/* Mindset Quote */
.mindset-quote {
  background: linear-gradient(135deg, #eef3f9, #e6eefa);
  border-radius: 32px;
  padding: 40px;
  margin: 20px 0 30px;
  text-align: center;
  font-size: 1.3rem;
  font-style: italic;
  color: #1a3b5d;
}

/* Split Section */
.split-section {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 80px 5%;
  background: #fefcf7;
}

.split-gallery {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.split-message {
  flex: 1;
  min-width: 300px;
  padding: 40px 40px 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.mini-gallery-item {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 10px 25px -8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.mini-gallery-item:hover {
  transform: scale(1.02);
}

.mini-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-message h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #1a3b5d, #2b5a7a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.split-message p {
  font-size: 1.1rem;
  color: #3a546d;
  line-height: 1.6;
  margin-bottom: 32px;
}

.split-message .feature-list {
  list-style: none;
  margin-bottom: 36px;
}

.split-message .feature-list li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.split-message .feature-list i {
  color: #1a3b5d;
  font-size: 1.3rem;
  width: 28px;
}

/* About Us Page Specific */
.about-hero {
  background: linear-gradient(135deg, #1a3b5d 0%, #2b5a7a 100%);
  color: white;
  padding: 80px 5%;
  text-align: center;
}

.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.mission-statement {
  background: #fefcf7;
  padding: 80px 5%;
}

.mission-quote {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: #1a3b5d;
  border-left: 4px solid #1a3b5d;
  padding-left: 40px;
  font-style: italic;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-card {
  background: white;
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}

.about-card:hover {
  transform: translateY(-5px);
}

.about-card i {
  font-size: 2.5rem;
  color: #1a3b5d;
  margin-bottom: 24px;
}

.about-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1e2b;
}

.about-card p {
  color: #3a546d;
  line-height: 1.6;
  font-size: 1rem;
}

.values-section {
  background: #faf8f2;
  padding: 80px 5%;
  text-align: center;
}

.values-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.values-section > p {
  color: #5b6f82;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-item {
  background: white;
  border-radius: 28px;
  padding: 36px 24px;
  transition: all 0.2s;
}

.value-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: #eef3f9;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.value-icon i {
  font-size: 2rem;
  color: #1a3b5d;
}

.value-item h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.value-item p {
  color: #3a546d;
  line-height: 1.5;
}

.age-banner {
  background: linear-gradient(135deg, #eef3f9, #e6eefa);
  padding: 60px 5%;
  text-align: center;
  margin: 0;
}

.age-banner h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a3b5d;
}

.age-banner p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #2c3e4e;
}

.about-cta {
  padding: 80px 5%;
  text-align: center;
  background: #fefcf7;
}

.about-cta h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-cta p {
  color: #5b6f82;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Other sections */
.section-full {
  width: 100%;
  padding: 80px 5%;
}

.section-dark-alt {
  background: #faf8f2;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 36px;
}

.event-card {
  padding: 32px;
}

.leadership-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.leader-card {
  background: white;
  border-radius: 32px;
  padding: 32px 28px;
  text-align: center;
  flex: 1 1 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.03);
  border: 1px solid #efece4;
  transition: all 0.2s;
}

.leader-card:hover {
  transform: translateY(-6px);
}

.leader-icon {
  font-size: 2.6rem;
  background: #eef3f9;
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  margin: 0 auto 20px;
  color: #1a3b5d;
}

.open-positions {
  background: #f1f5f9;
  border-radius: 48px;
  padding: 56px 48px;
  text-align: center;
}

.mission-block {
  margin-top: 60px;
  text-align: center;
  background: #eef3f9;
  border-radius: 48px;
  padding: 60px 32px;
}

/* 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;
}

/* Responsive Media Queries */
@media (max-width: 900px) {
  .split-section {
    flex-direction: column;
    padding: 60px 5%;
  }
  .split-message {
    padding: 40px 20px;
    text-align: center;
  }
  .split-message .feature-list li {
    justify-content: center;
  }
  .two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .section-full { padding: 60px 5%; }
  .section-title { font-size: 2rem; }
  .open-positions { padding: 36px 24px; }
  .content-section { padding: 50px 5%; }
  .values-section h2 { font-size: 2rem; }
  .age-banner h3 { font-size: 1.5rem; }
  .about-cta h2 { font-size: 1.8rem; }
  .about-hero h1 { font-size: 2.2rem; }
  .about-hero p { font-size: 1rem; }
  .mission-quote {
    font-size: 1.2rem;
    padding-left: 20px;
  }
  .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; }
}