*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0D2D49;
  --primary-light: #1a4060;
  --secondary: #91CECF;
  --secondary-light: #b0dedf;
  --accent: #406D6E;
  --accent-light: #7AAE88;
  --light: #F3F2ED;
  --dark: #0D2D49;
  --text: #0D2D49;
  --text-light: #5a7a8a;
  --white: #ffffff;
  --border: #d5d8d3;
  --shadow: 0 4px 20px rgba(13, 45, 73, 0.08);
  --shadow-lg: 0 12px 48px rgba(13, 45, 73, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --font-serif: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-sans: 'Source Sans 3', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --header-height: 76px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--secondary);
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--text-light);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 640px;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--secondary);
  color: var(--dark);
}

.btn-primary:hover {
  background: var(--secondary-light);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(145, 206, 207, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
}

.btn-accent:hover {
  background: var(--accent-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(64, 109, 110, 0.35);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: linear-gradient(135deg, rgba(13, 45, 73, 0.97), rgba(10, 31, 48, 0.98));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--transition);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--dark);
  flex-shrink: 0;
}

.logo:hover {
  color: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav a.active {
  color: var(--secondary);
}

.nav-cta {
  background: var(--secondary) !important;
  color: var(--dark) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--secondary-light) !important;
  color: var(--dark) !important;
  box-shadow: 0 4px 16px rgba(145, 206, 207, 0.3) !important;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}

/* Hero */
.hero {
  padding: calc(var(--header-height) + 4rem) 0 5rem;
  background: linear-gradient(135deg, var(--primary) 0%, #0a1f30 50%, #0D2D49 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(145, 206, 207, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(64, 109, 110, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-float-icons {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.float-icon {
  position: absolute;
  width: 2rem;
  height: 2rem;
  color: #fff;
  opacity: 0.15;
  animation: floatIcon 6s ease-in-out infinite;
}

.float-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.float-icon-1 { top: 12%; left: 35%; animation-delay: 0s; }
.float-icon-2 { top: 30%; right: 30%; animation-delay: 1.5s; width: 2.5rem; height: 2.5rem; }
.float-icon-3 { bottom: 25%; left: 30%; animation-delay: 3s; width: 1.5rem; height: 1.5rem; }
.float-icon-4 { bottom: 35%; right: 35%; animation-delay: 0.8s; }
.float-icon-5 { top: 20%; left: 55%; animation-delay: 2.2s; width: 2.2rem; height: 2.2rem; }
.float-icon-6 { bottom: 40%; left: 55%; animation-delay: 4s; width: 1.6rem; height: 1.6rem; }

@keyframes floatIcon {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(5deg); }
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  background: rgba(145, 206, 207, 0.15);
  color: var(--secondary);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(145, 206, 207, 0.2);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: normal;
  color: var(--secondary);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* Stats strip */
.stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* Mission */
.mission-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.mission-header .section-subtitle {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.mission-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.mission-text p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.1rem;
}

.mission-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.value-card {
  padding: 1.25rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  background: #fdfdfd;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.value-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.value-card h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}

.mission-image {
  background: linear-gradient(135deg, var(--primary), #0a1f30);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.5rem;
  color: var(--white);
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mission-image blockquote {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  line-height: 1.6;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
}

.quote-mark {
  font-size: 4rem;
  line-height: 1;
  color: #fdfdfd;
  opacity: 0.4;
  margin-bottom: -0.5rem;
}

.mission-image cite {
  margin-top: 1.25rem;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--secondary);
}

/* Programs section */
.programs-section {
  background: var(--white);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.program-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  text-align: center;
}

.program-card:hover {
  transform: translateY(-5px);
}

.program-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
}

.program-icon.gold {
  background: rgba(145, 206, 207, 0.15);
  color: var(--secondary);
}

.program-icon.teal {
  background: rgba(64, 109, 110, 0.12);
  color: var(--accent);
}

.program-icon.blue {
  background: rgba(13, 45, 73, 0.1);
  color: var(--primary);
}

.program-icon.rose {
  background: rgba(122, 174, 136, 0.15);
  color: var(--accent-light);
}

.program-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.program-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.program-link {
  color: var(--accent-light);
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.program-link:hover {
  color: var(--primary);
}

/* Impact section */
.impact-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0a1f30 100%);
  color: var(--white);
}

.impact-section .section-title {
  color: var(--white);
}

.impact-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.impact-card {
  background: linear-gradient(180deg, rgba(145, 206, 207, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
}

.impact-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.impact-card .stat-number {
  color: var(--secondary);
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  margin-bottom: 0.5rem;
}

.impact-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.impact-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* CTA */
.cta-section {
  background: var(--white);
  text-align: center;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary), #0a1f30);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  color: var(--white);
}

.cta-box h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #0D2D49, #0a1f30);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: all var(--transition);
}

.footer-col a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

/* Page header (inner pages) */
.page-header {
  padding: calc(var(--header-height) + 4rem) 0 3rem;
  background: linear-gradient(135deg, var(--primary) 0%, #0a1f30 100%);
  color: var(--white);
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* About page */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-story-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-story-image {
  background: linear-gradient(135deg, var(--accent-light), var(--primary));
  border-radius: var(--radius-lg);
  padding: 3rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}

.about-story-image .year {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent-light));
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-serif);
}

.team-card h4 {
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.team-card .role {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.team-card p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Programs page */
.program-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.program-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all var(--transition);
}

.program-detail-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.program-detail-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.program-detail-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.program-detail-card ul {
  list-style: none;
  padding: 0;
}

.program-detail-card ul li {
  padding: 0.4rem 0;
  color: var(--text-light);
  font-size: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.program-detail-card ul li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(145, 206, 207, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--secondary);
}

.contact-detail h4 {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 0.15rem;
}

.contact-detail p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--light);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(145, 206, 207, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Toast notification */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--accent-light);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 9999;
  pointer-events: none;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.toast.error {
  background: #c0392b;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-illustration {
    max-width: 380px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mission-body,
  .about-story,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .mission-values {
    grid-template-columns: repeat(2, 1fr);
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav a {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .program-detail-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .mission-values {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-box {
    padding: 3rem 1.5rem;
  }

  .section {
    padding: 3rem 0;
  }

  .hero {
    padding: calc(var(--header-height) + 2rem) 0 3rem;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .hero-image {
    order: -1;
    margin-bottom: 0.5rem;
  }

  .hero-img {
    max-width: 320px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-illustration {
    max-width: 280px;
    padding: 1.5rem;
  }

  .stats-grid {
    padding: 2rem 0;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .mission-image {
    padding: 1.5rem;
  }

  .mission-image blockquote {
    font-size: 1.2rem;
  }

  .quote-mark {
    font-size: 3rem;
  }

  .program-card {
    padding: 1.75rem 1.25rem;
  }

  .program-detail-card {
    padding: 1.5rem;
  }

  .program-detail-card ul li {
    font-size: 0.88rem;
  }

  .impact-card {
    padding: 1.75rem 1.25rem;
  }

  .contact-form-card {
    padding: 1.5rem;
  }

  .contact-grid {
    gap: 2rem;
  }

  .team-card {
    padding: 1.5rem;
  }

  .page-header {
    padding: calc(var(--header-height) + 2rem) 0 2rem;
  }

  .page-header h1 {
    font-size: 1.6rem;
  }

  .page-header p {
    font-size: 0.95rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .site-footer {
    padding: 2.5rem 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-img {
    max-width: 240px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .mission-values {
    gap: 0.75rem;
  }

  .value-card {
    padding: 1rem;
  }

  .programs-grid {
    gap: 1rem;
  }

  .hero-buttons .btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.25rem;
  }
}
