/*
 * Combined CSS Stylesheet for WebZero
 * This file contains all styles for the website.
 * Previously separate files (main.css, about.css, programs.css, resources.css)
 * have been consolidated into this single file.
 */

/* ======= Base Styles and Variables ======= */
:root {
    /* Brand Colors */
    --primary-color: #133A7C;
    --secondary-color: #194FAC;
    --accent-color: #FBCB4D;
    --soft-yellow: #F9D678;
    --background-color: #F9FAFB;
    --background-light: #F6F9FC;
    --text-dark: #111827;
    --text-medium: #4B5563;
    --text-light: #6B7280;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --border-color: #e0e0e0;
    --success-color: #10b981;
    --error-color: #ef4444;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-size-xs: 0.75rem;    /* 12px */
    --font-size-sm: 0.875rem;   /* 14px */
    --font-size-base: 1rem;     /* 16px */
    --font-size-md: 1.125rem;   /* 18px */
    --font-size-lg: 1.25rem;    /* 20px */
    --font-size-xl: 1.5rem;     /* 24px */
    --font-size-2xl: 2rem;      /* 32px */
    --font-size-3xl: 2.5rem;    /* 40px */
    --font-size-4xl: 3rem;      /* 48px */
    
    /* Font Weights */
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Spacing */
    --spacing-xs: 0.5rem;      /* 8px */
    --spacing-sm: 1rem;        /* 16px */
    --spacing-md: 1.5rem;      /* 24px */
    --spacing-lg: 2rem;        /* 32px */
    --spacing-xl: 3rem;        /* 48px */
    --spacing-2xl: 4rem;       /* 64px */
    --spacing-3xl: 6rem;       /* 96px */
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
    
    /* Container Widths */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    
    /* Z-index */
    --z-base: 1;
    --z-overlay: 10;
    --z-modal: 100;
    --z-toast: 1000;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
  }
  
  /* ======= Reset and Base Styles ======= */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-color);
    overflow-x: hidden;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all var(--transition-base);
  }
  
  a:hover {
    color: var(--secondary-color);
  }
  
  ul {
    list-style: none;
  }
  
  /* ======= Typography ======= */
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
  }
  
  h1 {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-extrabold);
  }
  
  h2 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
  }
  
  h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
  }
  
  h4 {
    font-size: var(--font-size-xl);
  }
  
  p {
    margin-bottom: var(--spacing-md);
    color: var(--text-medium);
  }
  
  /* ======= Layout ======= */
  .container {
    width: 90%;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
  }
  
  .section {
    padding: var(--spacing-2xl) 0;
  }
  
  .section-title {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    position: relative;
    padding-bottom: 15px;
  }
  
  .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
  }
  
  .section-description {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-md);
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    text-align: center;
  }
  
  .section-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  
  .bg-light {
    background-color: var(--off-white);
  }
  
  .bg-primary {
    background-color: var(--primary-color);
    color: var(--white);
  }
  
  /* ======= Buttons ======= */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    text-decoration: none;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(19, 58, 124, 0.3);
  }
  
  .btn-large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-md);
  }
  
  .btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
  }
  
  .btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(19, 58, 124, 0.3);
  }
  
  /* ======= Hero Section ======= */
  .hero {
    position: relative;
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
  }
  
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
  }
  
  .hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, var(--font-size-4xl));
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
  }
  
  .hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(var(--font-size-md), 3vw, var(--font-size-xl));
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero .btn {
    margin: var(--spacing-md) 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  /* ======= Feature Cards / Bento Grid ======= */
  .features {
    padding: var(--spacing-3xl) 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
  }
  
  .features::before {
    content: "";
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 30%;
    height: 40%;
    background: radial-gradient(circle, rgba(19, 58, 124, 0.05) 0%, rgba(19, 58, 124, 0) 70%);
    z-index: 1;
    pointer-events: none;
  }
  
  .bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    position: relative;
    z-index: 2;
  }
  
  .bento-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity var(--transition-base);
  }
  
  .bento-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
  }
  
  .bento-card:hover::before {
    opacity: 1;
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(19, 58, 124, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-base);
  }
  
  .bento-card:hover .card-icon {
    background-color: var(--accent-color);
    transform: scale(1.05);
  }
  
  .card-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all var(--transition-base);
  }
  
  .bento-card:hover .card-icon i {
    color: var(--soft-yellow);
  }
  
  .bento-card h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
    transition: all var(--transition-base);
  }
  
  .bento-card:hover h3 {
    color: var(--secondary-color);
  }
  
  .bento-card p {
    margin-bottom: var(--spacing-md);
    color: var(--text-medium);
    flex-grow: 1;
    line-height: 1.6;
  }
  
  .card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
    position: relative;
    transition: all var(--transition-base);
    padding-bottom: 2px;
  }
  
  .card-link:after {
    content: '→';
    margin-left: 5px;
    transition: transform var(--transition-base);
  }
  
  .card-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width var(--transition-base);
  }
  
  .bento-card:hover .card-link {
    color: var(--secondary-color);
  }
  
  .bento-card:hover .card-link:after {
    transform: translateX(6px);
  }
  
  .bento-card:hover .card-link:before {
    width: 100%;
  }
  
  /* ======= Stats Section ======= */
  .stats-section {
    background-color: var(--accent-color);
    padding: var(--spacing-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .stats-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
  }
  
  .stats-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 2;
  }
  
  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.15);
    padding: var(--spacing-lg) var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    min-width: 200px;
    transition: all var(--transition-base);
    position: relative;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
  
  .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.25);
  }
  
  .stat-item::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 0 0 4px 4px;
  }
  
  .stat-number {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
    position: relative;
    display: inline-block;
  }
  
  .stat-label {
    font-size: var(--font-size-md);
    color: var(--primary-color);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  /* ======= Call to Action Section ======= */
  .cta-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .cta-section::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 80%;
    height: 160%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 1;
  }
  
  .cta-section::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 80%;
    height: 160%;
    background: radial-gradient(ellipse at center, rgba(251, 203, 77, 0.1) 0%, rgba(251, 203, 77, 0) 70%);
    pointer-events: none;
    z-index: 1;
  }
  
  .cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  .cta-content h2 {
    color: var(--white);
    font-size: clamp(var(--font-size-xl), 4vw, var(--font-size-2xl));
    margin-bottom: var(--spacing-sm);
    font-weight: var(--font-weight-extrabold);
    letter-spacing: -0.5px;
  }
  
  .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-md);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-section .btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
    padding: var(--spacing-md) var(--spacing-xl);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
  }
  
  .cta-section .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.6s ease;
  }
  
  .cta-section .btn-primary:hover {
    background-color: var(--soft-yellow);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }
  
  .cta-section .btn-primary:hover::before {
    left: 100%;
  }
  
  /* ======= Newsletter Section ======= */
  .newsletter-section {
    padding: var(--spacing-2xl) 0;
    background-color: var(--white);
  }
  
  .newsletter-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--background-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    gap: var(--spacing-lg);
  }
  
  .newsletter-content {
    flex: 1;
  }
  
  .newsletter-content h2 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
  }
  
  .newsletter-content p {
    color: var(--text-medium);
    margin-bottom: 0;
  }
  
  .newsletter-form {
    flex: 1;
  }
  
  .form-group {
    display: flex;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
  }
  
  .form-group input {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
  }
  
  .form-privacy {
    font-size: var(--font-size-xs);
    color: var(--text-light);
  }
  
  /* ======= Footer ======= */
  .footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-2xl) 0 var(--spacing-md);
    position: relative;
    overflow: hidden;
  }
  
  .footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
  }
  
  .sun-rays {
    position: absolute;
    right: 5%;
    bottom: 5%;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(circle, white 0%, transparent 70%);
    transform: rotate(45deg);
  }
  
  .footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--soft-yellow), var(--accent-color));
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 2;
  }
  
  .footer-column h3 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
  }
  
  .footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
  }
  
  .social-links {
    display: flex;
    gap: var(--spacing-sm);
  }
  
  .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
  }
  
  .social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    opacity: 0;
    transform: scale(0);
    transition: all var(--transition-base);
    z-index: -1;
  }
  
  .social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
  }
  
  .social-links a:hover::before {
    opacity: 1;
    transform: scale(1);
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: var(--spacing-xs);
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
    display: inline-block;
  }
  
  .footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
  }
  
  .contact-info li {
    display: flex;
    align-items: center;
  }
  
  .contact-info i {
    width: 20px;
    margin-right: var(--spacing-sm);
    color: var(--accent-color);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-sm);
  }
  
  /* ======= Responsive Adjustments ======= */
  @media (max-width: 1024px) {
    .container {
      width: 95%;
    }
    
    .hero {
      padding: var(--spacing-2xl) 0;
    }
  }
  
  @media (max-width: 768px) {
    :root {
      --font-size-4xl: 2.5rem;
      --font-size-3xl: 2rem;
    }
    
    .newsletter-container {
      flex-direction: column;
      text-align: center;
    }
    
    .newsletter-form {
      width: 100%;
    }
  }
  
  @media (max-width: 576px) {
    :root {
      --font-size-4xl: 2rem;
      --font-size-3xl: 1.75rem;
      --font-size-2xl: 1.5rem;
    }
    
    .hero {
      padding: var(--spacing-xl) 0;
    }
    
    .form-group {
      flex-direction: column;
    }
    
    .stats-wrapper {
      gap: var(--spacing-lg);
    }
    
    .bento-card {
      padding: var(--spacing-md);
    }
  }
  
  /* ======= Header and Mobile Menu Styles ======= */
  .header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: var(--z-overlay);
    height: 80px; /* NEW: locks header height */
    padding: 0;   /* Removed vertical padding for full logo fit */
    transition: all var(--transition-base);
  }
  
  .header.scrolled {
    box-shadow: var(--shadow-md);
    height: 70px; /* NEW: slightly smaller on scroll */
  }
  
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%; /* Ensure inner aligns to full header height */
  }
  
  .logo img {
    height: 100%;         /* Fill the full height */
    max-height: 70px;     /* Match header height */
    object-fit: contain;
    display: block;
    transition: all var(--transition-base);
  }
  
  .footer-heading {
    display: flex;
    align-items: center; /* vertical alignment */
    gap: 1rem;
  }
  
  .footer-logo {
    max-height: 48px;
    height: auto;
    display: block;
  }
  
  .footer-title h2 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--color-white);
  }
  
  .footer-underline {
    height: 3px;
    width: 2.5rem;
    background-color: var(--teams-accent);
    margin-top: 0.3rem;
  }
  
  
  
  
  .header.scrolled .logo img {
    max-height: 60px;
  }
  
  .header.scrolled .logo img {
    height: 70px; /* Increased from 50px */
  }
  
  /* Adjust logo in mobile menu as well */
  .mobile-menu .logo img {
    height: 80px; /* Make mobile logo more prominent too */
  }
  
  .nav-list {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
  }
  
  .nav-item a {
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    margin: 0 0.25rem;
    transition: all var(--transition-base);
  }
  
  .nav-item a:hover, 
  .nav-item.active a {
    color: var(--primary-color);
  }
  
  .nav-item.active a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
  }
  
  .nav-item a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all var(--transition-base);
    transform: translateX(-50%);
  }
  
  .nav-item a:hover:after {
    width: 100%;
  }
  
  .nav-item .btn {
    padding: 0.6rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0;
    text-transform: none;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
  }
  
  .nav-item .btn:hover {
    background-color: var(--soft-yellow);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  
  .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
  }
  
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 20px;
  }
  
  .hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--primary-color);
    transition: all var(--transition-base);
    border-radius: var(--radius-full);
  }
  
  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--white);
    z-index: var(--z-modal);
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-base);
    overflow-y: auto;
  }
  
  .mobile-menu.active {
    right: 0;
  }
  
  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
  }
  
  .mobile-menu-close {
    background: none;
    border: none;
    font-size: var(--font-size-xl);
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all var(--transition-base);
  }
  
  .mobile-menu-close:hover {
    background-color: rgba(19, 58, 124, 0.1);
    color: var(--primary-color);
  }
  
  .mobile-nav {
    padding: var(--spacing-md);
  }
  
  .mobile-nav-item {
    margin-bottom: var(--spacing-md);
  }
  
  .mobile-nav-item a {
    display: inline-flex;
    align-items: center;
    font-size: var(--font-size-lg);
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
    padding: 0.5rem 0.75rem;
    margin: 0 0.25rem;
    transition: all var(--transition-base);
    position: relative;
  }
  
  .mobile-nav-item a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-base);
    transform: translateX(-50%);
  }
  
  .mobile-nav-item a:hover:after,
  .mobile-nav-item.active a:after {
    width: 100%;
  }
  
  .mobile-nav-item.active a,
  .mobile-nav-item a:hover {
    color: var(--primary-color);
  }
  
  .mobile-nav-item .btn {
    display: inline-block;
    text-align: center;
    margin-top: var(--spacing-sm);
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition-base);
  }
  
  .mobile-nav-item .btn:hover {
    background-color: var(--soft-yellow);
    transform: translateY(-2px);
  }
  
  /* Show mobile menu toggle on mobile devices */
  @media (max-width: 768px) {
    .main-nav {
      display: none;
    }
    
    .mobile-menu-toggle {
      display: block;
    }
    
    .hero h1 {
      font-size: var(--font-size-2xl);
    }
    
    .hero p {
      font-size: var(--font-size-base);
    }
  }
  
  /* ======= Resources Page ======= */
  .search-form {
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    gap: var(--spacing-xs);
    position: relative;
  }
  
  .search-input {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
    outline: none;
  }
  
  .search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(19, 58, 124, 0.1);
  }
  
  .search-button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    padding: 0.875rem 1.75rem;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: background-color var(--transition-base), transform var(--transition-base);
    white-space: nowrap;
  }
  
  .search-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
  }
  
  /* Featured Slider */
  .featured-slider-section {
    margin: var(--spacing-xl) 0;
  }
  
  .featured-slider {
    display: flex;
    gap: var(--spacing-md);
    overflow-x: auto;
    padding: var(--spacing-md) 0;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  
  .featured-slider::-webkit-scrollbar {
    display: none;
  }
  
  .slider-controls {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
  }
  
  .slider-dot {
    width: 12px;
    height: 12px;
    background-color: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color var(--transition-base);
  }
  
  .slider-dot.active {
    background-color: var(--primary-color);
  }
  
  /* Resources Grid */
  .resources-grid-section {
    padding: var(--spacing-xl) 0;
  }
  
  .filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
  }
  
  .filter-button, 
  .category-btn {
    padding: 0.5rem 1.25rem;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all var(--transition-base);
  }
  
  .filter-button:hover,
  .filter-button.active,
  .category-btn:hover,
  .category-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
  }
  
  .resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
  }
  
  .resource-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
  }
  
  .resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
  
  .card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .card-content {
    padding: var(--spacing-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    font-size: var(--font-size-xs);
    color: var(--text-light);
    margin-bottom: var(--spacing-xs);
    align-items: center;
  }
  
  .card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  
  .card-meta i {
    color: var(--primary-color);
  }
  
  .card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: var(--spacing-sm);
  }
  
  .card-tag {
    font-size: var(--font-size-xs);
    background-color: var(--off-white);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-medium);
  }
  
  .resource-card h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
  }
  
  .resource-card p {
    font-size: var(--font-size-sm);
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
  }
  
  .card-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
  }
  
  .card-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: background-color var(--transition-base);
    text-decoration: none;
  }
  
  .card-button:hover {
    background-color: var(--secondary-color);
    color: var(--white);
  }
  
  .download-count {
    font-size: var(--font-size-xs);
    color: var(--text-light);
  }
  
  /* Empty state */
  .empty-state {
    text-align: center;
    padding: var(--spacing-xl);
    display: none;
  }
  
  .empty-state i {
    font-size: var(--font-size-3xl);
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
  }
  
  .empty-state h3 {
    margin-bottom: var(--spacing-xs);
  }
  
  .empty-state p {
    color: var(--text-medium);
  }
  
  /* Pagination */
  .pagination {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-xl);
  }
  
  .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-base);
  }
  
  .page-link:hover,
  .page-link.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
  }
  
  /* Mobile filter toggle */
  .filter-toggle {
    display: none;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    margin-bottom: var(--spacing-md);
  }
  
  @media (max-width: 1024px) {
    .resources-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .filter-toggle {
      display: block;
      width: 100%;
    }
    
    .filter-container {
      display: none;
      flex-direction: column;
    }
    
    .filter-container.active {
      display: flex;
    }
    
    .resources-grid {
      grid-template-columns: 1fr;
    }
    
    .featured-slider {
      gap: var(--spacing-sm);
      padding: var(--spacing-sm) 0;
    }
  }
  
  /* ======= Programs Page ======= */
  .programs-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
  }
  
  .program-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
  }
  
  .program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
  
  .program-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .program-content {
    padding: var(--spacing-md);
  }
  
  .program-tag {
    display: inline-block;
    padding: 4px 8px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-xs);
  }
  
  .program-card h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xs);
  }
  
  .program-card p {
    font-size: var(--font-size-sm);
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
  }
  
  .program-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: var(--font-size-xs);
  }
  
  .program-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  
  /* Workshops Section */
  .workshops-section {
    padding: var(--spacing-xl) 0;
  }
  
  .workshop-filter {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
  }
  
  .filter-btn {
    padding: 0.5rem 1rem;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all var(--transition-base);
  }
  
  .filter-btn:hover,
  .filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
  }
  
  .workshop-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }
  
  .workshop-card {
    display: flex;
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
  }
  
  .workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
  
  .workshop-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    padding: var(--spacing-md);
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
  }
  
  .day {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    line-height: 1;
  }
  
  .month, .day-name {
    font-size: var(--font-size-xs);
    text-transform: uppercase;
  }
  
  .workshop-details {
    flex: 1;
    padding: var(--spacing-md);
  }
  
  .workshop-details h3 {
    margin-bottom: var(--spacing-xs);
  }
  
  .location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-size-sm);
    color: var(--text-medium);
    margin-bottom: var(--spacing-sm);
  }
  
  .description {
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-md);
  }
  
  .workshop-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .status {
    display: inline-block;
    padding: 4px 8px;
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
  }
  
  .status.open {
    background-color: #d1fae5;
    color: #065f46;
  }
  
  .status.full {
    background-color: #fee2e2;
    color: #b91c1c;
  }
  
  /* FAQ Section */
  .faq-section {
    padding: var(--spacing-xl) 0;
  }
  
  .faq-list {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: var(--spacing-sm);
  }
  
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    cursor: pointer;
    font-weight: var(--font-weight-semibold);
    transition: color var(--transition-base);
  }
  
  .faq-question:hover {
    color: var(--primary-color);
  }
  
  .faq-question i {
    transition: transform var(--transition-base);
  }
  
  .faq-item.active .faq-question i {
    transform: rotate(180deg);
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
  }
  
  .faq-item.active .faq-answer {
    max-height: 1000px;
  }
  
  .faq-answer-content {
    padding: 0 0 var(--spacing-md);
    color: var(--text-medium);
  }
  
  /* ======= Utility Classes ======= */
  .text-center {
    text-align: center;
  }
  
  .mt-1 { margin-top: var(--spacing-xs); }
  .mt-2 { margin-top: var(--spacing-sm); }
  .mt-3 { margin-top: var(--spacing-md); }
  .mt-4 { margin-top: var(--spacing-lg); }
  .mt-5 { margin-top: var(--spacing-xl); }
  
  .mb-1 { margin-bottom: var(--spacing-xs); }
  .mb-2 { margin-bottom: var(--spacing-sm); }
  .mb-3 { margin-bottom: var(--spacing-md); }
  .mb-4 { margin-bottom: var(--spacing-lg); }
  .mb-5 { margin-bottom: var(--spacing-xl); }
  
  .py-1 { padding-top: var(--spacing-xs); padding-bottom: var(--spacing-xs); }
  .py-2 { padding-top: var(--spacing-sm); padding-bottom: var(--spacing-sm); }
  .py-3 { padding-top: var(--spacing-md); padding-bottom: var(--spacing-md); }
  .py-4 { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }
  .py-5 { padding-top: var(--spacing-xl); padding-bottom: var(--spacing-xl); }
  
  .px-1 { padding-left: var(--spacing-xs); padding-right: var(--spacing-xs); }
  .px-2 { padding-left: var(--spacing-sm); padding-right: var(--spacing-sm); }
  .px-3 { padding-left: var(--spacing-md); padding-right: var(--spacing-md); }
  .px-4 { padding-left: var(--spacing-lg); padding-right: var(--spacing-lg); }
  .px-5 { padding-left: var(--spacing-xl); padding-right: var(--spacing-xl); }
  
  .hidden { display: none; }
  .block { display: block; }
  .flex { display: flex; }
  .grid { display: grid; }
  
  /* ======= Responsive Adjustments ======= */
  @media (max-width: 1280px) {
    .container {
      width: 95%;
    }
  }
  
  @media (max-width: 1024px) {
    :root {
      --font-size-4xl: 2.5rem;
      --font-size-3xl: 2rem;
    }
    
    .hero-section {
      padding: var(--spacing-xl) 0;
    }
    
    .team-grid,
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    :root {
      --font-size-4xl: 2rem;
      --font-size-3xl: 1.75rem;
      --font-size-2xl: 1.5rem;
    }
    
    .section {
      padding: var(--spacing-xl) 0;
    }
    
    .hero-buttons {
      flex-direction: column;
      gap: var(--spacing-sm);
      width: 100%;
    }
    
    .hero-buttons .btn {
      width: 100%;
    }
    
    .timeline:before {
      left: 20px;
    }
    
    .timeline-content {
      width: calc(100% - 50px);
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
      left: 50px;
    }
    
    .timeline-item:nth-child(odd) .timeline-year,
    .timeline-item:nth-child(even) .timeline-year {
      left: 20px;
      margin-left: 0;
    }
  }
  
  @media (max-width: 640px) {
    .team-grid,
    .stats-grid {
      grid-template-columns: 1fr;
    }
    
    .hero-title {
      font-size: var(--font-size-2xl);
    }
    
    .hero-description {
      font-size: var(--font-size-base);
    }
  }
  
  /* ======= Landing Page Styles ======= */
  .hero-fullscreen {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    padding: 0;
  }
  
  .hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(19, 58, 124, 0.8), rgba(19, 58, 124, 0.7));
    z-index: 2;
  }
  
  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-content-centered {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 var(--spacing-md);
  }
  
  .mega-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    font-weight: var(--font-weight-extrabold);
  }
  
  .large-text {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.4;
  }
  
  .hero-cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .btn-light {
    color: var(--white);
    border-color: var(--white);
  }
  
  .btn-light:hover {
    background-color: rgba(255, 255, 255, 0.15);
  }
  
  .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    font-size: 0.875rem;
    opacity: 0.8;
    cursor: pointer;
    transition: opacity var(--transition-base);
    z-index: 3;
  }
  
  .scroll-indicator span {
    margin-bottom: 8px;
  }
  
  .scroll-indicator i {
    font-size: var(--font-size-lg);
    animation: bounce 2s infinite;
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
  }
  
  /* Stats Highlight Section */
  .stats-highlight-section {
    background-color: var(--white);
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .stats-highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
  }
  
  .stat-highlight-card {
    text-align: center;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
  }
  
  .stat-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
  
  .stat-highlight-number {
    font-size: 3.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
    display: inline-block;
  }
  
  .stat-highlight-symbol {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    line-height: 1;
  }
  
  .stat-highlight-label {
    font-size: var(--font-size-md);
    color: var(--text-medium);
    font-weight: var(--font-weight-medium);
  }
  
  /* What We Do Section */
  .what-we-do-section {
    padding: var(--spacing-2xl) 0;
  }
  
  .section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
  }
  
  .section-header-left {
    max-width: 800px;
    margin: 0 0 var(--spacing-xl);
  }
  
  .feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
  }
  
  .feature-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    display: flex;
    flex-direction: column;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
  
  .feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: rgba(19, 58, 124, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
  }
  
  .feature-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-color);
  }
  
  .feature-card h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
  }
  
  .feature-card p {
    flex: 1;
    margin-bottom: var(--spacing-md);
    color: var(--text-medium);
  }
  
  /* Featured Resources Section */
  .featured-resources-section {
    padding: var(--spacing-2xl) 0;
  }
  
  .featured-resources-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
  }
  
  .resource-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
  
  .resource-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
  }
  
  .resource-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
  }
  
  .resource-card:hover .resource-card-image img {
    transform: scale(1.05);
  }
  
  .resource-card-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    padding: 5px 10px;
    border-radius: var(--radius-full);
    z-index: 2;
  }
  
  .resource-card-content {
    padding: var(--spacing-md);
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .resource-card-content h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
  }
  
  .resource-card-content p {
    margin-bottom: var(--spacing-md);
    color: var(--text-medium);
    flex: 1;
  }
  
  .resource-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: var(--font-size-xs);
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
  }
  
  .resource-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .resource-card-meta i {
    color: var(--primary-color);
  }
  
  .view-all-container {
    text-align: center;
  }
  
  /* Testimonial Section */
  .testimonial-section {
    padding: var(--spacing-2xl) 0;
    background-color: var(--white);
  }
  
  .testimonial-large {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  
  .testimonial-quote {
    position: relative;
    margin-bottom: var(--spacing-lg);
  }
  
  .testimonial-quote i {
    font-size: 2rem;
    color: var(--accent-color);
    opacity: 0.5;
  }
  
  .testimonial-quote i.fa-quote-left {
    position: absolute;
    top: -20px;
    left: -10px;
  }
  
  .testimonial-quote i.fa-quote-right {
    position: absolute;
    bottom: -20px;
    right: -10px;
  }
  
  .testimonial-quote blockquote {
    font-size: var(--font-size-xl);
    line-height: 1.6;
    font-weight: var(--font-weight-medium);
    color: var(--text-dark);
    font-style: italic;
    margin: 0 var(--spacing-lg);
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
  }
  
  .testimonial-author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
  }
  
  .testimonial-author-info h4 {
    margin-bottom: 0;
    font-size: var(--font-size-md);
    color: var(--primary-color);
  }
  
  .testimonial-author-info p {
    margin-bottom: 0;
    font-size: var(--font-size-sm);
    color: var(--text-light);
  }
  
  /* News Section */
  .news-section {
    padding: var(--spacing-2xl) 0;
  }
  
  .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
  }
  
  .news-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
  
  .news-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
  }
  
  .news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
  }
  
  .news-card:hover .news-card-image img {
    transform: scale(1.05);
  }
  
  .news-card-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px;
    border-radius: var(--radius-sm);
    text-align: center;
    min-width: 50px;
    box-shadow: var(--shadow-sm);
  }
  
  .news-card-date .day {
    display: block;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    line-height: 1;
  }
  
  .news-card-date .month {
    display: block;
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    font-weight: var(--font-weight-medium);
  }
  
  .news-card-content {
    padding: var(--spacing-md);
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .news-card-content h3 {
    font-size: var(--font-size-md);
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
    line-height: 1.4;
  }
  
  .news-card-content p {
    margin-bottom: var(--spacing-md);
    color: var(--text-medium);
    flex: 1;
  }
  
  /* CTA Full Section */
  .cta-full-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
  }
  
  .cta-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .cta-content h2 {
    color: var(--white);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-sm);
  }
  
  .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
  }
  
  /* Partners Section */
  .partners-section {
    padding: var(--spacing-2xl) 0;
    background-color: var(--white);
  }
  
  .partners-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-lg);
    align-items: center;
  }
  
  .partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-base);
  }
  
  .partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
  }
  
  .partner-logo img {
    max-height: 60px;
    width: auto;
  }
  
  /* Newsletter Section */
  .newsletter-section {
    padding: var(--spacing-xl) 0;
  }
  
  .newsletter-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    gap: var(--spacing-lg);
  }
  
  .newsletter-content {
    flex: 1;
  }
  
  .newsletter-content h2 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
  }
  
  .newsletter-content p {
    color: var(--text-medium);
    margin-bottom: 0;
  }
  
  .newsletter-form {
    flex: 1;
  }
  
  .form-group {
    display: flex;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
  }
  
  .form-group input {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
  }
  
  .form-privacy {
    font-size: var(--font-size-xs);
    color: var(--text-light);
  }
  
  /* Animation Classes */
  .animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
  }
  
  .delay-1 {
    animation-delay: 0.3s;
  }
  
  .delay-2 {
    animation-delay: 0.6s;
  }
  
  .delay-3 {
    animation-delay: 0.9s;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Responsive Designs */
  @media (max-width: 1200px) {
    .mega-title {
      font-size: 3.5rem;
    }
    
    .large-text {
      font-size: 1.25rem;
    }
    
   .feature-cards-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-logo-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 992px) {
    .mega-title {
      font-size: 3rem;
    }
    
    .stats-highlight-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-resources-slider {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-quote blockquote {
      font-size: var(--font-size-lg);
    }
    
    .newsletter-container {
      flex-direction: column;
      text-align: center;
    }
  }
  
  @media (max-width: 768px) {
    .hero-fullscreen {
      height: 90vh;
    }
    
    .mega-title {
      font-size: 2.5rem;
    }
    
    .large-text {
      font-size: 1.125rem;
      margin-bottom: var(--spacing-lg);
    }
    
    .hero-cta-buttons {
      flex-direction: column;
      gap: var(--spacing-sm);
    }
    
    .btn-large {
      width: 100%;
      min-width: auto;
    }
    
    .featured-resources-slider,
    .news-grid {
      grid-template-columns: 1fr;
    }
    
    .partners-logo-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--spacing-md);
    }
    
    .cta-buttons {
      flex-direction: column;
      gap: var(--spacing-sm);
    }
  }
  
  @media (max-width: 576px) {
    .mega-title {
      font-size: 2rem;
    }
    
    .large-text {
      font-size: 1rem;
    }
    
    .feature-cards-grid, 
    .stats-highlight-grid {
      grid-template-columns: 1fr;
    }
    
    .testimonial-quote blockquote {
        font-size: var(--font-size-md);
        margin: 0 var(--spacing-sm);
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .partners-logo-grid {
        grid-template-columns: repeat(1, 1fr);
    }
  }
  
  /* Chronicle HQ Inspired Styles - Adding to existing styles.css */
  
  :root {
      --font-primary: 'Poppins', sans-serif;
      --color-primary: #3b82f6;
      --color-primary-dark: #1d4ed8;
      --color-secondary: #f97316;
      --color-accent: #f59e0b;
      --color-dark: #1f2937;
      --color-light: #f9fafb;
      --color-muted: #9ca3af;
      --color-success: #10b981;
      --color-error: #ef4444;
      --color-warning: #f59e0b;
      
      --fs-display: clamp(3.5rem, 5vw + 1rem, 5rem);
      --fs-h1: clamp(2.5rem, 4vw + 1rem, 4rem);
      --fs-h2: clamp(2rem, 3vw + 1rem, 3rem);
      --fs-h3: clamp(1.5rem, 2vw + 0.5rem, 2rem);
      --fs-body: 1.125rem;
      --fs-small: 0.875rem;
      
      --spacing-xs: 0.5rem;
      --spacing-sm: 1rem;
      --spacing-md: 2rem;
      --spacing-lg: 4rem;
      --spacing-xl: 8rem;
      
      --border-radius-sm: 4px;
      --border-radius-md: 8px;
      --border-radius-lg: 16px;
      --border-radius-full: 9999px;
      
      --transition-fast: 0.2s ease;
      --transition-medium: 0.3s ease;
      --transition-slow: 0.5s ease;
      
      --box-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
      --box-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      --box-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      --box-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      
      --z-sticky: 100;
      --z-dialog: 200;
      --z-dropdown: 300;
      --z-modal: 400;
      --z-toast: 500;
  }
  
  /* Global Typography Refinements */
  body {
      font-family: var(--font-primary);
      font-weight: 400;
      line-height: 1.7;
      color: var(--color-dark);
      background-color: var(--color-light);
  }
  
  h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-primary);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: var(--spacing-md);
  }
  
  h1 {
      font-size: var(--fs-h1);
      letter-spacing: -0.02em;
  }
  
  h2 {
      font-size: var(--fs-h2);
      letter-spacing: -0.01em;
  }
  
  p {
      margin-bottom: var(--spacing-md);
  }
  
  /* Scroll Progress Indicator */
  .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 4px;
      background-color: var(--color-primary);
      width: 0%;
      z-index: var(--z-sticky);
      transition: width 0.1s;
  }
  
  /* Redesigned Hero Section */
  .hero-offset {
      position: relative;
      padding: var(--spacing-xl) 0;
      min-height: 90vh;
      display: flex;
      align-items: center;
      overflow: hidden;
  }
  
  .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--spacing-lg);
      align-items: center;
  }
  
  .hero-content {
      position: relative;
      z-index: 2;
  }
  
  .eyebrow {
      display: inline-block;
      text-transform: uppercase;
      font-size: var(--fs-small);
      font-weight: 600;
      letter-spacing: 0.1em;
      color: var(--color-primary);
      margin-bottom: var(--spacing-sm);
      position: relative;
  }
  
  .eyebrow:after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 40px;
      height: 2px;
      background-color: var(--color-primary);
  }
  
  .hero-title {
      font-size: var(--fs-display);
      margin-bottom: var(--spacing-md);
      line-height: 1.1;
  }
  
  .hero-title .accent {
      color: var(--color-primary);
      position: relative;
      z-index: 1;
  }
  
  .hero-title .accent:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: -5%;
      width: 110%;
      height: 0.2em;
      background-color: rgba(59, 130, 246, 0.2);
      z-index: -1;
      transform: rotate(-1deg);
  }
  
  .hero-description {
      font-size: var(--fs-body);
      max-width: 540px;
      margin-bottom: var(--spacing-md);
  }
  
  .hero-buttons {
      display: flex;
      gap: var(--spacing-sm);
  }
  
  .hero-visual {
      position: relative;
      width: 100%;
      height: 100%;
  }
  
  .hero-image-container {
      position: relative;
      border-radius: var(--border-radius-lg);
      overflow: hidden;
      box-shadow: var(--box-shadow-xl);
      z-index: 1;
      transform: rotate(2deg);
      transition: transform var(--transition-medium);
  }
  
  .hero-image-container:hover {
      transform: rotate(0deg);
  }
  
  .hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.7s ease;
  }
  
  .hero-image-container:hover .hero-image {
      transform: scale(1.05);
  }
  
  .abstract-shape {
      position: absolute;
      border-radius: var(--border-radius-full);
      z-index: 0;
  }
  
  .shape-1 {
      width: 250px;
      height: 250px;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0) 70%);
      top: -50px;
      right: -50px;
  }
  
  .shape-2 {
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0) 70%);
      bottom: -30px;
      left: -30px;
  }
  
  .stat-badge {
      position: absolute;
      bottom: 30px;
      left: -20px;
      background-color: white;
      border-radius: var(--border-radius-md);
      padding: var(--spacing-sm);
      box-shadow: var(--box-shadow-lg);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 140px;
  }
  
  .stat-number {
      font-size: 2rem;
      font-weight: 700;
      color: var(--color-primary);
  }
  
  .stat-label {
      font-size: var(--fs-small);
      color: var(--color-muted);
      text-align: center;
  }
  
  .scroll-indicator {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      color: var(--color-muted);
      font-size: var(--fs-small);
      cursor: pointer;
      z-index: 5;
      opacity: 1;
      transition: opacity var(--transition-medium);
  }
  
  .scroll-indicator span {
      margin-bottom: var(--spacing-xs);
  }
  
  .scroll-indicator i {
      font-size: 1.2rem;
      animation: bounce 2s infinite;
  }
  
  @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
          transform: translateY(0);
      }
      40% {
          transform: translateY(-10px);
      }
      60% {
          transform: translateY(-5px);
      }
  }
  
  /* Purpose & Impact Sections */
  .purpose-section,
  .impact-section {
      position: relative;
      padding: var(--spacing-xl) 0;
      overflow: hidden;
  }
  
  .section-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(100deg, rgba(59, 130, 246, 0.03) 0%, rgba(59, 130, 246, 0) 70%);
      z-index: -1;
  }
  
  .section-bg.reverse {
      background: linear-gradient(-100deg, rgba(249, 115, 22, 0.03) 0%, rgba(249, 115, 22, 0) 70%);
  }
  
  .purpose-grid,
  .impact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--spacing-lg);
      align-items: center;
  }
  
  .impact-grid {
      direction: rtl;
  }
  
  .impact-content,
  .impact-visual {
      direction: ltr;
  }
  
  .section-badge {
      display: inline-block;
      background-color: rgba(59, 130, 246, 0.1);
      color: var(--color-primary);
      padding: 0.25rem 0.75rem;
      border-radius: var(--border-radius-full);
      font-size: var(--fs-small);
      font-weight: 600;
      margin-bottom: var(--spacing-sm);
      text-transform: uppercase;
      letter-spacing: 0.05em;
  }
  
  .section-badge.centered {
      display: block;
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
  }
  
  .section-title {
      margin-bottom: var(--spacing-md);
  }
  
  .section-title.centered {
      text-align: center;
  }
  
  .section-text {
      font-size: var(--fs-body);
      margin-bottom: var(--spacing-md);
  }
  
  .text-link {
      display: inline-flex;
      align-items: center;
      color: var(--color-primary);
      font-weight: 600;
      transition: transform var(--transition-fast);
  }
  
  .text-link i {
      margin-left: var(--spacing-xs);
      transition: transform var(--transition-fast);
  }
  
  .text-link:hover {
      color: var(--color-primary-dark);
  }
  
  .text-link:hover i {
      transform: translateX(4px);
  }
  
  .layered-image {
      position: relative;
      border-radius: var(--border-radius-lg);
      overflow: hidden;
  }
  
  .layered-image.reverse {
      transform: rotate(-2deg);
  }
  
  .layered-image:not(.reverse) {
      transform: rotate(2deg);
  }
  
  .image-bg {
      position: absolute;
      top: var(--spacing-sm);
      left: var(--spacing-sm);
      width: 100%;
      height: 100%;
      background-color: rgba(59, 130, 246, 0.1);
      border-radius: var(--border-radius-lg);
      z-index: -1;
  }
  
  .layered-image.reverse .image-bg {
      background-color: rgba(249, 115, 22, 0.1);
  }
  
  .purpose-image,
  .impact-image {
      width: 100%;
      display: block;
      border-radius: var(--border-radius-lg);
      box-shadow: var(--box-shadow-lg);
      transition: transform var(--transition-slow);
  }
  
  .layered-image:hover .purpose-image,
  .layered-image:hover .impact-image {
      transform: scale(1.03);
  }
  
  .floating-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: rgba(255, 255, 255, 0.2);  /* Light frosted layer */
    backdrop-filter: blur(8px);            /* Stronger glass effect */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: inherit;
    min-width: 140px;
    z-index: 3;
    transition: all 0.3s ease;
  }
  
  .floating-badge.reverse {
      top: auto;
      right: auto;
      bottom: -20px;
      left: -20px;
  }
  
  .badge-number {
      font-size: 2rem;
      font-weight: 700;
      color: var(--color-primary);
  }
  
  .badge-label {
      font-size: var(--fs-small);
      color: var(--color-muted);
      text-align: center;
  }
  
  .metrics-row {
      display: flex;
      gap: var(--spacing-lg);
      margin-top: var(--spacing-md);
  }
  
  .metric {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
  }
  
  .metric-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--color-primary);
      line-height: 1.1;
  }
  
  .metric-label {
      font-size: var(--fs-small);
      color: var(--color-muted);
  }
  
  /* Tools Section with Bento Grid */
  .tools-section {
      padding: var(--spacing-xl) 0;
  }
  
  .section-header {
      margin-bottom: var(--spacing-lg);
  }
  
  .section-description {
      font-size: var(--fs-body);
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
      margin-bottom: var(--spacing-lg);
  }
  
  .bento-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
      gap: var(--spacing-md);
  }
  
  .bento-card {
      background-color: white;
      border-radius: var(--border-radius-lg);
      padding: var(--spacing-md);
      box-shadow: var(--box-shadow-md);
      transition: all var(--transition-medium);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      z-index: 1;
  }
  
  .bento-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background-color: var(--color-primary);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform var(--transition-medium);
      z-index: 1;
  }
  
  .bento-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--box-shadow-lg);
  }
  
  .bento-card:hover::before {
      transform: scaleX(1);
  }
  
  .bento-card.large {
      grid-column: span 2;
      grid-row: span 1;
  }
  
  .card-icon {
      background-color: rgba(59, 130, 246, 0.1);
      color: var(--color-primary);
      width: 60px;
      height: 60px;
      border-radius: var(--border-radius-full);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--spacing-md);
      transition: all var(--transition-medium);
  }
  
  .bento-card:hover .card-icon {
      transform: scale(1.1);
      background-color: var(--color-primary);
      color: white;
  }
  
  .card-icon i {
      font-size: 1.5rem;
  }
  
  .bento-card h3 {
      font-size: var(--fs-h3);
      margin-bottom: var(--spacing-sm);
  }
  
  .bento-card p {
      color: var(--color-muted);
      margin-bottom: var(--spacing-md);
      flex-grow: 1;
  }
  
  .card-link {
      font-weight: 600;
      color: var(--color-primary);
      display: inline-flex;
      align-items: center;
      transition: all var(--transition-fast);
      position: relative;
  }
  
  .card-link:after {
      content: '→';
      margin-left: 6px;
      transition: transform var(--transition-fast);
  }
  
  .bento-card:hover .card-link {
      color: var(--color-primary-dark);
  }
  
  .bento-card:hover .card-link:after {
      transform: translateX(4px);
  }
  
  /* Testimonial Section */
  .testimonial-section {
      padding: var(--spacing-xl) 0;
      background-color: #f8fafc;
  }
  
  .testimonial-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--spacing-lg);
      align-items: center;
  }
  
  .testimonial-quote {
      background-color: white;
      border-radius: var(--border-radius-lg);
      padding: var(--spacing-lg);
      box-shadow: var(--box-shadow-lg);
      position: relative;
      margin: 0;
  }
  
  .testimonial-quote:before {
      content: '"';
      position: absolute;
      top: -30px;
      left: 30px;
      font-size: 6rem;
      color: rgba(59, 130, 246, 0.1);
      font-family: serif;
      line-height: 1;
  }
  
  .testimonial-quote p {
      font-size: 1.25rem;
      font-style: italic;
      margin-bottom: var(--spacing-md);
      position: relative;
      z-index: 1;
  }
  
  .testimonial-quote cite {
      display: flex;
      flex-direction: column;
      font-style: normal;
  }
  
  .author-name {
      font-weight: 600;
      color: var(--color-dark);
  }
  
  .author-title {
      font-size: var(--fs-small);
      color: var(--color-muted);
  }
  
  .testimonial-metrics {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--spacing-md);
  }
  
  .metric-card {
      background-color: white;
      border-radius: var(--border-radius-md);
      padding: var(--spacing-md);
      box-shadow: var(--box-shadow-md);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: transform var(--transition-medium), box-shadow var(--transition-medium);
      position: relative;
      z-index: 1;
      overflow: hidden;
  }
  
  .metric-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at center, rgba(251, 203, 77, 0.6) 0%, rgba(251, 203, 77, 0) 70%);
      opacity: 0;
      z-index: -1;
      transition: opacity 0.5s ease;
      transform: scale(0.8);
  }
  
  .metric-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--box-shadow-lg);
  }
  
  .metric-card:hover::before {
      opacity: 0.6;
      transform: scale(1.1);
  }
  
  .metric-icon {
      width: 50px;
      height: 50px;
      background-color: rgba(59, 130, 246, 0.1);
      border-radius: var(--border-radius-full);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--spacing-sm);
      color: var(--color-primary);
  }
  
  .metric-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--color-dark);
      line-height: 1.1;
      margin-bottom: var(--spacing-xs);
  }
  
  .metric-label {
      font-size: var(--fs-small);
      color: var(--color-muted);
  }
  
  /* Newsletter Section */
  .newsletter-section {
      padding: var(--spacing-xl) 0;
      background-color: var(--color-light);
      position: relative;
      overflow: hidden;
  }
  
  .newsletter-container {
      background-color: white;
      border-radius: var(--border-radius-lg);
      padding: var(--spacing-lg);
      box-shadow: var(--box-shadow-xl);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--spacing-lg);
      align-items: center;
      position: relative;
      overflow: hidden;
  }
  
  .newsletter-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(59, 130, 246, 0) 50%);
      z-index: 0;
  }
  
  .newsletter-content {
      position: relative;
      z-index: 1;
  }
  
  .newsletter-title {
      font-size: var(--fs-h2);
      margin-bottom: var(--spacing-sm);
  }
  
  .newsletter-description {
      color: var(--color-muted);
      margin-bottom: 0;
  }
  
  .newsletter-form {
      position: relative;
      z-index: 1;
  }
  
  .form-group {
      display: flex;
      margin-bottom: var(--spacing-sm);
  }
  
  .form-group input {
      flex-grow: 1;
      border: 1px solid #e5e7eb;
      border-radius: var(--border-radius-md);
      padding: 1rem 1.5rem;
      font-size: 1rem;
      background-color: white;
      margin-right: var(--spacing-xs);
  }
  
  .form-privacy {
      color: var(--color-muted);
  }
  
  /* ==== Chronicle-Inspired Enhancements === */
  
  /* Highlight Underline Fix */
  .hero-highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
  }
  
  .hero-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0.15em;
    width: 100%;
    height: 0.5em;
    background: linear-gradient(90deg, #FBCB4D, #F9D678);
    z-index: -1;
    border-radius: 4px;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  
  .hero-highlight.pulse::after {
    animation: highlightPulse 1s ease-in-out;
  }
  
  @keyframes highlightPulse {
    0% {
        opacity: 0.8;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
    100% {
        opacity: 0.8;
        transform: scaleY(1);
    }
  }
  
  /* Buttons */
  .button-primary {
    background: linear-gradient(to right, #133A7C, #194FAC);
    color: #ffffff;
    transition: all 0.5s ease;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-md);
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .button-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FBCB4D;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
  }
  
  .button-primary:hover {
    color: #000000;
    transform: translateY(-2px);
  }
  
  .button-primary:hover::before {
    transform: scaleX(1);
  }
  
  /* Outline button style (explore button) */
  .button-outline {
    border: 2px solid #133A7C;
    color: #133A7C;
    background: transparent;
    font-weight: 600;
    transition: all 0.5s ease;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-md);
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .button-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FBCB4D;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
  }
  
  .button-outline:hover {
    color: #000000;
    border-color: #000000;
    transform: translateY(-2px);
  }
  
  .button-outline:hover::before {
    transform: scaleX(1);
  }
  
  /* ==== Chronicle-Inspired Enhancements === */
  
  /* Highlight Underline Fix */
  .hero-highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
  }
  
  .hero-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0.15em;
    width: 100%;
    height: 0.5em;
    background: linear-gradient(90deg, #FBCB4D, #F9D678);
    z-index: -1;
    border-radius: 4px;
  }
  
  /* Animation Classes */
  .animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .animate-fade-in.animated {
    opacity: 1;
    transform: translateY(0);
  }
  
  .delay-1 {
    transition-delay: 0.2s;
  }
  
  .delay-2 {
    transition-delay: 0.4s;
  }
  
  .delay-3 {
    transition-delay: 0.6s;
  }
  
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Responsive Styles */
  @media (max-width: 1200px) {
    :root {
        --fs-display: clamp(3rem, 4vw + 1rem, 4rem);
        --fs-h1: clamp(2rem, 3vw + 1rem, 3rem);
        --fs-h2: clamp(1.75rem, 2.5vw + 1rem, 2.5rem);
    }
    
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .bento-card.large {
        grid-column: span 2;
    }
  }
  
  @media (max-width: 992px) {
    .hero-grid,
    .purpose-grid,
    .impact-grid,
    .testimonial-grid,
    .newsletter-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .impact-grid {
        direction: ltr;
    }
    
    .purpose-visual,
    .impact-visual {
        margin-top: var(--spacing-md);
    }
    
    .testimonial-metrics {
        margin-top: var(--spacing-md);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-column:first-child {
        grid-column: span 2;
        margin-bottom: var(--spacing-md);
    }
  }
  
  @media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card.large {
        grid-column: span 1;
    }
    
    .metrics-row {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-group input {
        margin-right: 0;
        margin-bottom: var(--spacing-xs);
    }
  }
  
  @media (max-width: 576px) {
    .mega-title {
        font-size: 2rem;
    }
    
    .large-text {
        font-size: 1rem;
    }
    
    .feature-cards-grid, 
    .stats-highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-quote blockquote {
        font-size: var(--font-size-md);
        margin: 0 var(--spacing-sm);
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .partners-logo-grid {
        grid-template-columns: repeat(1, 1fr);
    }
  }
  
  /* ======= Stacked Values Section ======= */
  .values-scroll-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    background: linear-gradient(100deg, rgba(19, 58, 124, 0.02) 0%, rgba(25, 79, 172, 0.06) 100%);
  }
  
  .values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
  
  .values-content-left {
    flex: 1;
    max-width: 500px;
  }
  
  .values-content-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .values-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(251, 203, 77, 0.2);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  .values-content-left h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
  }
  
  .values-content-left p {
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.7;
  }
  
  .device-frame {
    position: relative;
    width: 300px;
    height: 600px;
    background-color: var(--white);
    border-radius: 32px;
    box-shadow: 0 20px 40px -10px rgba(19, 58, 124, 0.2);
    padding: 12px;
    border: 3px solid var(--primary-color);
    overflow: hidden;
    position: relative;
  }
  
  .device-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0.8;
    z-index: 5;
  }
  
  .device-screen {
    width: 100%;
    height: 100%;
    background-color: var(--off-white);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(19, 58, 124, 0.1);
  }
  
  .value-cards-container {
    height: 100%;
    overflow-y: auto;
    padding: 15px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) rgba(0, 0, 0, 0.1);
  }
  
  .value-cards-container::-webkit-scrollbar {
    width: 4px;
  }
  
  .value-cards-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 2px;
  }
  
  .value-cards-container::-webkit-scrollbar-thumb {
    background-color: var(--accent-color);
    border-radius: 2px;
  }
  
  .value-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
    border-left: 3px solid transparent;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .value-card:last-child {
    margin-bottom: 0;
  }
  
  .value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 2;
  }
  
  .value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
  }
  
  .value-card:hover::before {
    opacity: 1;
  }
  
  .value-card.active {
    box-shadow: 0 12px 24px rgba(19, 58, 124, 0.12);
    transform: translateY(-5px);
    border-left: 3px solid var(--accent-color);
  }
  
  .value-card.hover-preview {
    opacity: 0.95;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(19, 58, 124, 0.1);
    z-index: 3;
  }
  
  .value-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all var(--transition-base);
  }
  
  .value-card:hover .value-card-icon {
    background-color: var(--accent-color);
    transform: scale(1.05);
  }
  
  .value-card-icon i {
    font-size: 20px;
    color: var(--white);
  }
  
  .value-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    color: var(--primary-color);
    transition: all var(--transition-base);
  }
  
  .value-card:hover h3 {
    color: var(--secondary-color);
  }
  
  .value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-medium);
  }
  
  .values-navigation {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  
  .progress-dots {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(19, 58, 124, 0.2);
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
  }
  
  .progress-dot.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(251, 203, 77, 0.4);
  }
  
  .progress-dot.hovering {
    background-color: var(--accent-color);
    transform: scale(1.1);
    opacity: 0.7;
    box-shadow: 0 0 8px rgba(251, 203, 77, 0.5);
  }
  
  /* Responsive adjustments for values section */
  @media (max-width: 992px) {
    .values-container {
      flex-direction: column;
      gap: 40px;
    }
    
    .values-content-left {
      max-width: 100%;
      text-align: center;
    }
    
    .values-content-left h2 {
      margin-left: auto;
      margin-right: auto;
    }
    
    .values-badge {
      display: inline-block;
      margin-left: auto;
      margin-right: auto;
    }
    
    .values-navigation {
      position: relative;
      right: auto;
      top: auto;
      transform: none;
      margin-top: 30px;
    }
    
    .progress-dots {
      flex-direction: row;
      justify-content: center;
      gap: 12px;
    }
  }
  
  @media (max-width: 576px) {
    .device-frame {
      width: 280px;
      height: 520px;
    }
    
    .values-content-left h2 {
      font-size: 2rem;
    }
    
    .device-frame::before {
      height: 4px;
    }
    
    .value-card {
      padding: 1.25rem;
    }
    
    .value-card-icon {
      width: 45px;
      height: 45px;
    }
  }
  
  /* ======= Journey Timeline Styles ======= */
  .journey-timeline {
    position: relative;
    padding: 2rem 0 4rem;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .timeline-path {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
  }
  
  .timeline-progress-bar {
    position: absolute;
    width: 100%;
    background-color: var(--accent-color);
    top: 0;
    left: 0;
    transform-origin: top center;
    transform: scaleY(0);
    transition: transform 0.5s ease-out;
  }
  
  .timeline-milestones {
    position: relative;
    padding: 1rem 0;
  }
  
  .timeline-milestone {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: flex-start;
    opacity: 0;
    transition: opacity 0.6s ease-out;
  }
  
  .timeline-milestone.animated {
    opacity: 1;
  }
  
  .timeline-milestone.left {
    justify-content: flex-end;
    padding-right: 50%;
  }
  
  .timeline-milestone.right {
    justify-content: flex-start;
    padding-left: 50%;
  }
  
  .milestone-connector {
    position: absolute;
    top: 2.5rem;
    left: 50%;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    transform: translateX(-50%);
    z-index: 2;
  }
  
  .timeline-milestone.left .milestone-connector {
    transform: translateX(-50%) translateX(40px);
  }
  
  .timeline-milestone.right .milestone-connector {
    transform: translateX(-50%) translateX(-40px);
  }
  
  .milestone-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--accent-color);
    transform: translate(-50%, -50%);
    z-index: 3;
    box-shadow: 0 0 0 4px rgba(251, 203, 77, 0.3);
    transition: all 0.3s ease;
  }
  
  .timeline-milestone.left .milestone-dot {
    left: 100%;
  }
  
  .timeline-milestone.right .milestone-dot {
    left: 0;
  }
  
  .milestone-content {
    position: relative;
    width: 90%;
    max-width: 450px;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
  }
  
  .milestone-content.animated {
    opacity: 1;
    transform: translateY(0);
  }
  
  .timeline-milestone.left .milestone-content {
    padding-right: 3rem;
    text-align: right;
  }
  
  .timeline-milestone.right .milestone-content {
    padding-left: 3rem;
    text-align: left;
  }
  
  .milestone-year {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    line-height: 1;
    transition: transform 0.3s ease;
  }
  
  .milestone-card {
    position: relative;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .milestone-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .milestone-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(251, 203, 77, 0.2);
    color: var(--accent-color);
    border-radius: 50%;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
  }
  
  .milestone-card:hover .milestone-icon {
    background-color: var(--accent-color);
    color: var(--white);
    transform: scale(1.1);
  }
  
  .timeline-milestone.left .milestone-icon {
    margin-left: auto;
  }
  
  .milestone-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
  }
  
  .milestone-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
  }
  
  /* Animation classes */
  .slide-left {
    transform: translateX(50px);
  }
  
  .slide-right {
    transform: translateX(-50px);
  }
  
  .slide-left.animated,
  .slide-right.animated {
    transform: translateX(0);
  }
  
  /* Mobile Responsive Timeline */
  @media (max-width: 768px) {
    .timeline-path {
      left: 20px;
    }
    
    .timeline-milestone {
      flex-direction: column;
      padding-left: 50px;
    }
    
    .timeline-milestone.left,
    .timeline-milestone.right {
      padding-right: 0;
      padding-left: 50px;
    }
    
    .milestone-connector {
      width: 30px;
      left: 20px;
    }
    
    .timeline-milestone.left .milestone-connector,
    .timeline-milestone.right .milestone-connector {
      transform: translateX(0);
    }
    
    .milestone-dot {
      left: 20px;
    }
    
    .milestone-content {
      width: 100%;
      text-align: left;
    }
    
    .timeline-milestone.left .milestone-content,
    .timeline-milestone.right .milestone-content {
      padding-left: 0;
      padding-right: 0;
      text-align: left;
    }
    
    .timeline-milestone.left .milestone-icon {
      margin-right: auto;
    }
    
    .slide-left,
    .slide-right {
      transform: translateX(0);
    }
    
    .slide-left.animated,
    .slide-right.animated {
      transform: translateX(0);
    }
  }
  
  /* ======= Team Slider Styles ======= */
  .team-slider-container {
    position: relative;
    max-width: 100%;
    margin: 3rem auto 4rem;
    padding: 0 1rem;
    overflow: hidden;
  }
  
  .team-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 2rem 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  
  .team-slider::-webkit-scrollbar {
    display: none;
  }
  
  .team-slide {
    flex: 0 0 300px;
    min-width: 300px;
    scroll-snap-align: center;
  }
  
  .team-member-card {
    position: relative;
    background: linear-gradient(to bottom, #ffffff, #f7f9fc);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(16, 53, 111, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(16, 53, 111, 0.12);
  }
  
  .member-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem 1rem;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), rgba(16, 53, 111, 0.9));
    border-radius: 16px 16px 0 0;
  }
  
  .member-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 30px;
    background: inherit;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transform: scaleX(1.2);
  }
  
  .avatar-container {
    position: relative;
    z-index: 2;
    margin-bottom: 0.75rem;
  }
  
  .avatar-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(16, 53, 111, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    overflow: hidden;
  }
  
  .team-member-card:hover .avatar-circle {
    transform: scale(1.08);
    box-shadow: 0 12px 24px rgba(16, 53, 111, 0.3);
    border: 4px solid var(--accent-color);
  }
  
  .avatar-initials {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  }
  
  .member-title {
    text-align: center;
    z-index: 2;
  }
  
  .member-title h3 {
    font-size: 1.3rem;
    margin: 0 0 0.25rem;
    color: white;
    font-weight: 600;
  }
  
  .member-role {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
    letter-spacing: 0.05em;
    margin: 0;
  }
  
  .member-content {
    flex: 1;
    padding: 2rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
  }
  
  .member-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    flex: 1;
    margin-top: 0;
  }
  
  .member-social {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 1.5rem;
  }
  
  .member-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f0f3f9;
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 53, 111, 0.1);
  }
  
  .member-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(16, 53, 111, 0.2);
  }
  
  .team-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2.5rem;
    gap: 2rem;
  }
  
  .team-nav-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid rgba(16, 53, 111, 0.2);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .team-nav-arrow:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 53, 111, 0.2);
  }
  
  .team-progress-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 180px;
    gap: 8px;
  }
  
  .team-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(16, 53, 111, 0.1);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
  }
  
  .team-progress-indicator {
    position: absolute;
    height: 100%;
    width: 25%;
    left: 0;
    top: 0;
    background: var(--accent-color);
    border-radius: 2px;
    transition: width 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0 10px rgba(251, 203, 77, 0.5);
  }
  
  .team-progress-numbers {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  
  .current-slide {
    color: var(--primary-color);
    font-weight: 700;
  }
  
  .separator {
    opacity: 0.5;
  }
  
  .total-slides {
    opacity: 0.7;
  }
  
  @media (max-width: 992px) {
    .team-slide {
      flex: 0 0 280px;
      min-width: 280px;
    }
    
    .member-header {
      padding: 1.75rem 1.25rem 0.75rem;
    }
    
    .avatar-circle {
      width: 90px;
      height: 90px;
    }
    
    .avatar-initials {
      font-size: 2rem;
    }
    
    .team-progress-container {
      min-width: 150px;
    }
  }
  
  @media (max-width: 768px) {
    .team-slider-container {
      margin: 2rem auto 3rem;
    }
    
    .team-slide {
      flex: 0 0 260px;
      min-width: 260px;
    }
    
    .member-header {
      padding: 1.5rem 1rem 0.75rem;
    }
    
    .avatar-circle {
      width: 80px;
      height: 80px;
    }
    
    .avatar-initials {
      font-size: 1.8rem;
    }
    
    .member-content {
      padding: 1.75rem 1.25rem 1.25rem;
    }
    
    .member-title h3 {
      font-size: 1.2rem;
    }
    
    .team-controls {
      gap: 1.5rem;
    }
    
    .team-nav-arrow {
      width: 42px;
      height: 42px;
    }
    
    .team-progress-container {
      min-width: 120px;
    }
    
    .team-progress-numbers {
      font-size: 0.8rem;
    }
  }
  
  @media (max-width: 576px) {
    .team-slider {
      padding: 1.5rem 0.5rem;
      gap: 20px;
    }
    
    .team-slide {
      flex: 0 0 240px;
      min-width: 240px;
    }
    
    .avatar-circle {
      width: 70px;
      height: 70px;
      border-width: 3px;
    }
    
    .avatar-initials {
      font-size: 1.6rem;
    }
    
    .member-bio {
      font-size: 0.9rem;
      line-height: 1.6;
    }
    
    .member-social a {
      width: 34px;
      height: 34px;
    }
    
    .team-controls {
      margin-top: 2rem;
      gap: 1.2rem;
    }
    
    .team-nav-arrow {
      width: 38px;
      height: 38px;
      font-size: 0.9rem;
    }
    
    .team-progress-container {
      min-width: 100px;
    }
    
    .team-progress-bar {
      height: 3px;
    }
  }
  
  /* About page - Right-focused hero section */
  .hero-about {
    position: relative;
    padding: var(--spacing-xl) 0;
    min-height: 90vh;
    background: linear-gradient(110deg, rgba(19, 58, 124, 0.05) 0%, rgba(19, 58, 124, 0.15) 100%);
    overflow: hidden;
    transition: background 0.5s ease-in-out;
  }
  
  .hero-about:hover {
    background: linear-gradient(110deg, rgba(19, 58, 124, 0.07) 0%, rgba(19, 58, 124, 0.18) 100%);
  }
  
  .hero-about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
  }
  
  .hero-about-content {
    order: 2;
    position: relative;
    z-index: 2;
    padding-left: var(--spacing-xl);
    border-left: 3px solid var(--accent-color);
  }
  
  .hero-about-visual {
    order: 1;
    position: relative;
    overflow: visible;
    transition: transform 0.3s ease-in-out;
  }
  
  .hero-about-visual:hover {
    transform: translateY(-5px);
  }
  
  .hero-about-image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow-xl);
    transform: rotate(-3deg);
    transition: transform var(--transition-medium), box-shadow 0.4s ease;
    z-index: 2;
  }
  
  .hero-about-image-container:hover {
    transform: rotate(0deg);
    box-shadow: 0 15px 35px rgba(19, 58, 124, 0.15);
  }
  
  .hero-about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }
  
  .hero-about-image-container:hover .hero-about-image {
    transform: scale(1.05);
  }
  
  .hero-about-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 203, 77, 0.3) 0%, rgba(251, 203, 77, 0) 70%);
    width: 300px;
    height: 300px;
    right: -80px;
    top: -80px;
    z-index: 1;
  }
  
  .stats-badges-group {
    position: absolute;
    bottom: -30px;
    right: -30px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    z-index: 3;
  }
  
  .stat-badge-alt {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-sm);
    box-shadow: var(--box-shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    transform: rotate(3deg);
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .stat-badge-alt:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 10px 25px rgba(19, 58, 124, 0.15);
  }
  
  .stat-badge-alt:nth-child(even) {
    transform: rotate(-2deg);
    background-color: var(--accent-color);
  }
  
  .stat-badge-alt:nth-child(even):hover {
    transform: rotate(0deg) scale(1.05);
  }
  
  .stat-badge-alt:nth-child(even) .stat-number {
    color: var(--primary-color);
  }
  
  .stat-badge-alt:nth-child(even) .stat-label {
    color: var(--primary-color);
  }
  
  @media (max-width: 992px) {
    .hero-about-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-lg);
    }
    
    .hero-about-content {
      order: 1;
      padding-left: 0;
      border-left: none;
      text-align: center;
      margin-bottom: var(--spacing-lg);
    }
    
    .hero-about-visual {
      order: 2;
    }
    
    .stats-badges-group {
      position: absolute;
      bottom: -20px;
      right: 0;
      left: 0;
      flex-direction: row;
      justify-content: center;
      gap: var(--spacing-md);
    }
    
    .eyebrow:after {
      left: 50%;
      transform: translateX(-50%);
    }
  }
  
  @media (max-width: 576px) {
    .stats-badges-group {
      flex-direction: column;
      align-items: center;
      bottom: -100px;
    }
    
    .stat-badge-alt {
      min-width: 100px;
    }
  }
  
  /* ======= Programs Page Styles ======= */
  
  /* Program Journey Hero Section */
  .program-journey-hero {
    min-height: 90vh;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xl) 0;
  }
  
  .journey-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    height: 100%;
  }
  
  .journey-left {
    padding-right: var(--spacing-lg);
  }
  
  .program-badge {
    display: inline-block;
    padding: calc(var(--spacing-xs) / 1.5) var(--spacing-sm);
    background-color: rgba(19, 58, 124, 0.1);
    color: var(--primary-color);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
  }
  
  .journey-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
  }
  
  .journey-description {
    font-size: var(--font-size-lg);
    color: var(--text-medium);
    max-width: 500px;
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
  }
  
  .journey-right {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .journey-cards-container {
    position: relative;
    width: 100%;
    height: 400px;
    perspective: 1000px;
  }
  
  .journey-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-lg);
    opacity: 0;
    transform: translateY(20px) scale(0.95) rotateY(10deg);
    transition: all 0.5s ease-out;
    pointer-events: none;
    overflow: hidden;
  }
  
  .journey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--soft-yellow));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  
  .journey-card.active {
    opacity: 1;
    transform: translateY(0) scale(1) rotateY(0);
    pointer-events: auto;
    z-index: 3;
  }
  
  .journey-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .journey-card .card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(251, 203, 77, 0.15);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
  }
  
  .journey-card .card-icon i {
    font-size: 36px;
    color: var(--accent-color);
  }
  
  .journey-card h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
  }
  
  .journey-card p {
    font-size: var(--font-size-md);
    color: var(--text-medium);
    line-height: 1.6;
    flex-grow: 1;
  }
  
  .journey-navigation {
    margin-top: var(--spacing-md);
  }
  
  .journey-progress {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .progress-dots {
    display: flex;
    gap: var(--spacing-sm);
  }
  
  .progress-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(19, 58, 124, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .progress-dot.active, 
  .progress-dot:hover {
    background-color: var(--primary-color);
  }
  
  .progress-bar {
    height: 4px;
    background-color: rgba(19, 58, 124, 0.1);
    border-radius: var(--radius-full);
    position: relative;
  }
  
  .progress-indicator {
    position: absolute;
    height: 100%;
    width: 33.33%;
    background-color: var(--primary-color);
    border-radius: var(--radius-full);
    transition: transform 0.5s ease;
    transform-origin: left;
  }
  
  /* Program Categories Section */
  .program-categories-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--off-white);
    position: relative;
  }
  
  .programs-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
  }
  
  .program-bento-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 1;
  }
  
  .program-bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(251, 203, 77, 0.1), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
  }
  
  .program-bento-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-md);
  }
  
  .program-bento-card:hover::before {
    opacity: 1;
  }
  
  .program-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(19, 58, 124, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-base);
  }
  
  .program-card-icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: all var(--transition-base);
  }
  
  .program-bento-card:hover .program-card-icon {
    background-color: var(--primary-color);
  }
  
  .program-bento-card:hover .program-card-icon i {
    color: var(--white);
  }
  
  .program-bento-card h3 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
  }
  
  .program-bento-card p {
    font-size: var(--font-size-base);
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 0;
  }
  
  .chalk-texture {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    opacity: 0.05;
    background-image: url('../images/chalk-texture.png');
    background-size: cover;
    z-index: -1;
  }
  
  /* Program Stories Section */
  .program-stories-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--white);
  }
  
  .stories-slider-container {
    position: relative;
    margin-top: var(--spacing-xl);
  }
  
  .stories-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: var(--spacing-lg);
    padding: var(--spacing-sm) var(--spacing-sm) var(--spacing-lg);
  }
  
  .stories-slider::-webkit-scrollbar {
    display: none;
  }
  
  .story-slide {
    flex: 0 0 calc(33.333% - var(--spacing-md));
    scroll-snap-align: start;
    min-width: 320px;
  }
  
  .story-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: transform var(--transition-base);
  }
  
  .story-card:hover {
    transform: translateY(-5px);
  }
  
  .story-image {
    position: relative;
    height: 200px;
    overflow: hidden;
  }
  
  .story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .story-card:hover .story-image img {
    transform: scale(1.05);
  }
  
  .region-tag {
    position: absolute;
    bottom: var(--spacing-sm);
    left: var(--spacing-sm);
    padding: calc(var(--spacing-xs) / 2) var(--spacing-sm);
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-md);
    z-index: 2;
  }
  
  .story-content {
    padding: var(--spacing-md);
  }
  
  .story-content h3 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
  }
  
  .story-content p {
    font-size: var(--font-size-base);
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
  }
  
  .story-attribution {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    font-style: italic;
    text-align: right;
  }
  
  .stories-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
  }
  
  .stories-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid rgba(19, 58, 124, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
  }
  
  .stories-arrow:hover {
    background-color: var(--primary-color);
    color: var(--white);
  }
  
  .stories-progress-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    width: 200px;
  }
  
  .stories-progress-bar {
    width: 100%;
    height: 4px;
    background-color: rgba(19, 58, 124, 0.1);
    border-radius: var(--radius-full);
    position: relative;
  }
  
  .stories-progress-indicator {
    position: absolute;
    height: 100%;
    width: 25%;
    background-color: var(--primary-color);
    border-radius: var(--radius-full);
    transition: transform 0.5s ease;
    transform-origin: left;
  }
  
  .stories-progress-numbers {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--font-size-sm);
    color: var(--text-medium);
  }
  
  .current-slide {
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
  }
  
  /* Impact Stats Section */
  .impact-stats-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--off-white);
    position: relative;
  }
  
  .impact-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/dot-pattern.png');
    background-size: 20px;
    opacity: 0.05;
    z-index: 0;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
  }
  
  .stat-box {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .stat-box::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--soft-yellow));
    z-index: -1;
  }
  
  .stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
  
  .stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(251, 203, 77, 0.15);
    border-radius: 50%;
    margin: 0 auto var(--spacing-md);
  }
  
  .stat-icon i {
    font-size: 24px;
    color: var(--accent-color);
  }
  
  .stat-number {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    position: relative;
    display: inline-block;
  }
  
  .stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-medium);
    font-weight: var(--font-weight-medium);
  }
  
  /* Program CTA Section */
  .program-cta-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--white);
  }
  
  .program-cta-container {
    background: linear-gradient(135deg, var(--accent-color), var(--soft-yellow));
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl) var(--spacing-xl) calc(var(--spacing-xl) + 80px);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .program-cta-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
  }
  
  .program-cta-content h2 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
  }
  
  .program-cta-content p {
    font-size: var(--font-size-lg);
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
  }
  
  .program-cta-buttons {
    display: flex;
    gap: var(--spacing-md);
  }
  
  .program-cta-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url('../images/wave-pattern.svg');
    background-size: cover;
    background-position: center;
    z-index: 1;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .journey-container {
      grid-template-columns: 1fr;
      gap: var(--spacing-lg);
    }
    
    .journey-left {
      padding-right: 0;
      text-align: center;
    }
    
    .journey-description {
      margin: 0 auto var(--spacing-lg);
    }
    
    .journey-cards-container {
      margin: 0 auto;
      max-width: 500px;
    }
    
    .journey-navigation {
      margin: var(--spacing-md) auto 0;
      max-width: 500px;
    }
    
    .programs-bento-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .stories-slider {
      padding-bottom: var(--spacing-xl);
    }
    
    .story-slide {
      flex: 0 0 calc(50% - var(--spacing-md));
      min-width: 280px;
    }
  }
  
  @media (max-width: 768px) {
    .journey-title {
      font-size: calc(var(--font-size-3xl) + 0.5rem);
    }
    
    .program-badge {
      margin: 0 auto var(--spacing-md);
    }
    
    .programs-bento-grid {
      grid-template-columns: 1fr;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .story-slide {
      flex: 0 0 calc(100% - var(--spacing-md));
      min-width: 280px;
    }
    
    .program-cta-buttons {
      flex-direction: column;
    }
    
    .program-cta-content h2 {
      font-size: var(--font-size-xl);
    }
    
    .program-cta-content p {
      font-size: var(--font-size-md);
    }
    
    .program-cta-container {
      padding: var(--spacing-lg) var(--spacing-md) calc(var(--spacing-lg) + 60px);
    }
  }
  
  @media (max-width: 576px) {
    .journey-card {
      height: 350px;
    }
    
    .stats-grid {
      grid-template-columns: 1fr;
      max-width: 300px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .stories-controls {
      flex-wrap: wrap;
    }
    
    .stories-progress-container {
      order: -1;
      margin-bottom: var(--spacing-sm);
      width: 100%;
    }
  }
  
  /* Bento Grid System for Programs Page */
  .bento-grid {
    display: grid;
    gap: var(--spacing-md);
    width: 100%;
  }
  
  .bento-cell {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    position: relative;
    height: 100%;
  }
  
  .bento-cell:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(19, 58, 124, 0.15);
  }
  
  /* Bento Hero Section */
  .bento-hero-section {
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9effd 100%);
  }
  
  .bento-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .bento-hero-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/dot-pattern.png');
    opacity: 0.1;
    mix-blend-mode: overlay;
  }
  
  .bento-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 2;
  }
  
  .bento-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    box-shadow: none;
  }
  
  .bento-hero-title {
    font-size: var(--font-size-xxl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    color: var(--color-dark);
  }
  
  .bento-hero-description {
    font-size: var(--font-size-lg);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
    max-width: 540px;
  }
  
  .bento-hero-cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    box-shadow: none;
  }
  
  .bento-carousel {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .bento-card-wrapper {
    position: relative;
    height: 300px;
    margin-bottom: var(--spacing-md);
  }
  
  .bento-carousel-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-lg);
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(10px) scale(0.95);
    opacity: 0;
    transition: all 0.4s ease-in-out;
    z-index: 1;
    pointer-events: none;
  }
  
  .bento-carousel-card.active {
    transform: translateX(0) scale(1);
    opacity: 1;
    z-index: 3;
    pointer-events: auto;
  }
  
  .bento-carousel-card.hover-preview {
    transform: translateX(0) scale(0.98);
    opacity: 0.9;
    z-index: 2;
    pointer-events: auto;
  }
  
  .bento-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light);
    border-radius: 50%;
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
  }
  
  .bento-card-icon i {
    font-size: 26px;
    color: var(--color-primary);
    transition: all 0.3s ease;
  }
  
  .bento-carousel-card:hover .bento-card-icon {
    background: var(--color-primary);
  }
  
  .bento-carousel-card:hover .bento-card-icon i {
    color: #ffffff;
  }
  
  .impact-stat {
    margin-top: var(--spacing-md);
    font-size: var(--font-size-sm);
    color: var(--color-text);
    font-weight: 500;
  }
  
  .impact-stat span {
    font-size: var(--font-size-md);
    font-weight: 700;
    color: var(--color-primary);
  }
  
  .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
  }
  
  .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(19, 58, 124, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .carousel-dot:hover {
    background-color: rgba(19, 58, 124, 0.5);
  }
  
  .carousel-dot.active {
    background-color: var(--color-primary);
    width: 24px;
    border-radius: 10px;
  }
  
  /* Programs Section */
  .bento-programs-section {
    padding: var(--spacing-xxl) 0;
    background-color: #f8f9fa;
  }
  
  .program-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
  }
  
  .filter-chip {
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 50px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    background-color: #ffffff;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .filter-chip:hover {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    border-color: var(--color-primary-light);
  }
  
  .filter-chip.active {
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
  }
  
  .programs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .program-cell {
    height: 100%;
    display: flex;
  }
  
  .program-cell-inner {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .program-cell-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light);
    border-radius: 50%;
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
  }
  
  .program-cell-icon i {
    font-size: 24px;
    color: var(--color-primary);
    transition: all 0.3s ease;
  }
  
  .program-cell:hover .program-cell-icon {
    background: var(--color-primary);
  }
  
  .program-cell:hover .program-cell-icon i {
    color: #ffffff;
  }
  
  .program-cell h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
  }
  
  .program-stat {
    display: flex;
    align-items: center;
    font-size: var(--font-size-sm);
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
  }
  
  .program-stat span {
    font-size: var(--font-size-md);
    font-weight: 700;
    color: var(--color-primary);
    margin-right: 5px;
  }
  
  .program-cell p {
    font-size: var(--font-size-sm);
    line-height: 1.6;
    color: var(--color-text);
    flex-grow: 1;
  }
  
  /* Stories Section */
  .bento-stories-section {
    padding: var(--spacing-xxl) 0;
    background-color: #ffffff;
  }
  
  .stories-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(240px, auto);
  }
  
  .story-cell {
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  .story-cell.large {
    grid-column: span 2;
    grid-row: span 2;
  }
  
  .story-image {
    position: relative;
    height: 240px;
    overflow: hidden;
  }
  
  .story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
  }
  
  .story-cell:hover .story-image img {
    transform: scale(1.05);
  }
  
  .story-tag {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    z-index: 2;
  }
  
  .story-content {
    padding: var(--spacing-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
  }
  
  .story-content .story-tag {
    position: static;
    align-self: flex-start;
    margin-bottom: var(--spacing-sm);
  }
  
  .story-content h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
  }
  
  .story-content p {
    font-size: var(--font-size-sm);
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
  }
  
  .story-attribution {
    font-size: var(--font-size-xs);
    font-style: italic;
    margin-top: auto;
    color: var(--color-text-light);
  }
  
  .story-link {
    margin-top: auto;
    align-self: flex-start;
    color: var(--color-primary);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
  }
  
  .story-link i {
    margin-left: 6px;
    transition: transform 0.3s ease;
  }
  
  .story-link:hover {
    color: var(--color-primary-dark);
  }
  
  .story-link:hover i {
    transform: translateX(4px);
  }
  
  /* Impact Section */
  .bento-impact-section {
    padding: var(--spacing-xxl) 0;
    background-color: #f8f9fa;
    position: relative;
  }
  
  .impact-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(200px, auto);
  }
  
  .impact-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-lg);
  }
  
  .impact-cell.large {
    grid-column: span 2;
    grid-row: span 2;
    text-align: left;
    align-items: flex-start;
    justify-content: center;
  }
  
  .impact-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light);
    border-radius: 50%;
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
  }
  
  .impact-icon i {
    font-size: 30px;
    color: var(--color-primary);
    transition: all 0.3s ease;
  }
  
  .impact-cell:hover .impact-icon {
    background: var(--color-primary);
  }
  
  .impact-cell:hover .impact-icon i {
    color: #ffffff;
  }
  
  .impact-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
    transition: all 0.3s ease;
  }
  
  .impact-label {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text);
  }
  
  .impact-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--color-dark);
  }
  
  .impact-content p {
    font-size: var(--font-size-md);
    line-height: 1.6;
    color: var(--color-text);
    max-width: 440px;
  }
  
  /* CTA Section */
  .bento-cta-section {
    padding: var(--spacing-xl) 0 var(--spacing-xxl);
    position: relative;
    background-color: #fffbf0;
    overflow: hidden;
  }
  
  .cta-grid {
    grid-template-columns: 1.5fr 1fr;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 2;
  }
  
  .cta-cell {
    background: transparent;
    box-shadow: none;
    display: flex;
    align-items: center;
  }
  
  .cta-content {
    padding: var(--spacing-md) 0;
  }
  
  .cta-content h2 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-dark);
  }
  
  .cta-content p {
    font-size: var(--font-size-md);
    line-height: 1.6;
    color: var(--color-text);
    max-width: 500px;
  }
  
  .buttons-cell {
    justify-content: flex-end;
  }
  
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .cta-button {
    display: flex;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .partner-button {
    background: linear-gradient(to right, #133A7C, #194FAC);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(19, 58, 124, 0.2);
  }
  
  .sponsor-button {
    background: #ffffff;
    color: var(--color-primary);
    border: 2px solid var(--color-primary-light);
  }
  
  .cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(19, 58, 124, 0.15);
  }
  
  .button-icon {
    margin-right: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
  }
  
  .cta-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1;
    background: url('../images/wave-pattern.svg') no-repeat bottom center;
    background-size: cover;
  }
  
  /* Animation Classes */
  .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
  }
  
  .slide-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  
  .slide-in-up.animated {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Responsive Breakpoints */
  @media (max-width: 1200px) {
    .bento-hero-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-lg);
    }
    
    .bento-hero-content {
      text-align: center;
      align-items: center;
    }
    
    .bento-hero-description {
      max-width: 700px;
    }
    
    .programs-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .stories-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .story-cell.large {
      grid-column: span 2;
      grid-row: span 1;
    }
    
    .impact-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-cell.large {
      grid-column: span 2;
    }
  }
  
  @media (max-width: 768px) {
    .bento-hero-title {
      font-size: var(--font-size-xl);
    }
    
    .programs-grid {
      grid-template-columns: 1fr;
    }
    
    .stories-grid {
      grid-template-columns: 1fr;
    }
    
    .story-cell.large {
      grid-column: span 1;
    }
    
    .impact-grid {
      grid-template-columns: 1fr;
    }
    
    .impact-cell.large {
      grid-column: span 1;
      grid-row: auto;
    }
    
    .cta-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-xl);
    }
    
    .buttons-cell {
      justify-content: flex-start;
    }
    
    .cta-buttons {
      flex-direction: row;
      flex-wrap: wrap;
    }
  }
  
  @media (max-width: 576px) {
    .program-filter {
      flex-wrap: wrap;
      justify-content: flex-start;
    }
    
    .filter-chip {
      flex: 0 0 calc(50% - var(--spacing-sm));
      text-align: center;
    }
    
    .bento-card-wrapper {
      height: 350px;
    }
    
    .cta-buttons {
      flex-direction: column;
    }
  }
  
  /* ======= Programs Page Styles ======= */
  .programs-hero-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-color), #0a2b63);
    min-height: 90vh;
    color: var(--white);
    overflow: hidden;
  }
  
  .programs-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern-dots.svg');
    background-size: cover;
    opacity: 0.08;
    z-index: 1;
  }
  
  .programs-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
  }
  
  .programs-hero-content {
    max-width: 600px;
  }
  
  .programs-hero-eyebrow {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(4px);
  }
  
  .programs-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    color: var(--white);
  }
  
  .programs-hero-description {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .programs-hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
  }
  
  .programs-hero-buttons .btn {
    min-width: 180px;
    justify-content: center;
  }
  
  .programs-hero-buttons .btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .programs-hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    background-color: #FBCB4D;
  }
  
  .programs-hero-buttons .btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: var(--white);
    font-weight: var(--font-weight-semibold);
    background: transparent;
  }
  
  .programs-hero-buttons .btn-outline:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
  }
  
  .programs-hero-card {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .stat-cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    width: 100%;
    max-width: 420px;
  }
  
  .stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
  }
  
  .stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
  }
  
  .stat-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .stat-card-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    font-size: 1.5rem;
  }
  
  .stat-card-number {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--spacing-xs);
    color: var(--white);
  }
  
  .stat-card-label {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-xs);
    color: var(--white);
  }
  
  .stat-card-description {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
  }
  
  /* Programs Section */
  .programs-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
  }
  
  .programs-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(19, 58, 124, 0.05) 0%, rgba(19, 58, 124, 0) 70%);
    border-radius: 50%;
    z-index: 1;
  }
  
  .programs-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 221, 0, 0.05) 0%, rgba(255, 221, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
  }
  
  .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    position: relative;
    z-index: 2;
  }
  
  .badge {
    display: inline-block;
    background-color: rgba(19, 58, 124, 0.1);
    color: var(--primary-color);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-sm);
  }
  
  .section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    line-height: 1.2;
  }
  
  .section-header p {
    font-size: var(--font-size-lg);
    color: var(--text-medium);
    line-height: 1.6;
  }
  
  /* Programs Bento Grid */
  .programs-new-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: var(--spacing-lg);
    position: relative;
    z-index: 2;
  }
  
  .program-new-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    height: 100%;
  }
  
  .program-new-card.large {
    grid-column: span 6;
    grid-row: span 2;
  }
  
  .program-new-card.medium {
    grid-column: span 6;
    grid-row: span 1;
  }
  
  .program-new-card.small {
    grid-column: span 4;
    grid-row: span 1;
  }
  
  .program-new-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
    z-index: 10;
  }
  
  .program-new-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity var(--transition-base);
  }
  
  .program-new-card:hover::before {
    opacity: 1;
  }
  
  .program-new-card-content {
    display: flex;
    flex-direction: column;
    padding: var(--spacing-lg);
    height: 100%;
  }
  
  .program-new-card-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(19, 58, 124, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-base);
  }
  
  .program-new-card:hover .program-new-card-icon {
    background-color: var(--accent-color);
    transform: scale(1.05);
  }
  
  .program-new-card-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all var(--transition-base);
  }
  
  .program-new-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
    transition: all var(--transition-base);
  }
  
  .program-new-card:hover h3 {
    color: var(--secondary-color);
  }
  
  .program-new-card p {
    margin-bottom: var(--spacing-md);
    color: var(--text-medium);
    flex-grow: 1;
    line-height: 1.6;
  }
  
  .program-new-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
    position: relative;
    transition: all var(--transition-base);
    margin-top: auto;
    padding-bottom: 2px;
  }
  
  .program-new-card-link:after {
    content: '→';
    margin-left: 5px;
    transition: transform var(--transition-base);
  }
  
  .program-new-card-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width var(--transition-base);
  }
  
  .program-new-card:hover .program-new-card-link {
    color: var(--secondary-color);
  }
  
  .program-new-card:hover .program-new-card-link:after {
    transform: translateX(6px);
  }
  
  .program-new-card:hover .program-new-card-link:before {
    width: 100%;
  }
  
  /* Responsive Styles for Programs Page */
  @media (max-width: 1200px) {
    .programs-new-bento-grid {
      grid-template-columns: repeat(6, 1fr);
    }
    
    .program-new-card.large {
      grid-column: span 6;
    }
    
    .program-new-card.medium {
      grid-column: span 3;
    }
    
    .program-new-card.small {
      grid-column: span 2;
    }
  }
  
  @media (max-width: 768px) {
    .programs-hero-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-xl);
    }
    
    .programs-hero-content {
      text-align: center;
      max-width: 100%;
    }
    
    .programs-hero-buttons {
      justify-content: center;
    }
    
    .programs-new-bento-grid {
      grid-template-columns: 1fr;
    }
    
    .program-new-card.large,
    .program-new-card.medium,
    .program-new-card.small {
      grid-column: span 1;
    }
  }
  
  /* Unified Impact Section */
  .unified-impact-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    position: relative;
    overflow: hidden;
  }
  
  .unified-impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern-light.png');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
  }
  
  .impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Impact Stats Column Styles */
  .impact-stats-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .impact-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .impact-stat-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .impact-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .stat-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(19, 58, 124, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 24px;
  }
  
  .stat-content {
    width: 100%;
  }
  
  .stat-number {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1.2;
  }
  
  .stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-medium);
  }
  
  .stat-progress {
    margin-top: 10px;
    width: 100%;
    height: 6px;
    background-color: rgba(19, 58, 124, 0.1);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
  }
  
  .progress-ring {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Animation classes */
  .fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  @media (max-width: 992px) {
    .impact-grid {
      grid-template-columns: 1fr;
      gap: 60px;
    }
    
    .impact-stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 576px) {
    .impact-stats-grid {
      grid-template-columns: 1fr;
    }
    
    .stat-number {
      font-size: 24px;
    }
  }
  
  /* Contact Section Styles - Updated for Programs Page */
  .contact-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
  }
  
  .contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
  }
  
  .contact-item h3 {
    font-size: var(--font-size-lg);
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
  }
  
  .contact-item p {
    font-size: var(--font-size-sm);
    color: var(--text-medium);
    line-height: 1.6;
  }
  
  .contact-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
  }
  
  .contact-button {
    display: flex;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .contact-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(19, 58, 124, 0.15);
  }
  
  .button-icon {
    margin-right: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
  }
  
  .contact-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1;
    background: url('../images/wave-pattern.svg') no-repeat bottom center;
    background-size: cover;
  }
  
  /* Animation Classes */
  .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
  }
  
  .slide-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  
  .slide-in-up.animated {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Responsive Breakpoints */
  @media (max-width: 1200px) {
    .contact-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-lg);
    }
    
    .contact-item {
      text-align: center;
    }
  }
  
  @media (max-width: 768px) {
    .contact-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-xl);
    }
    
    .contact-item i {
      font-size: 1.5rem;
      margin-bottom: var(--spacing-xs);
    }
    
    .contact-item h3 {
      font-size: var(--font-size-md);
      margin-bottom: var(--spacing-xs);
    }
    
    .contact-item p {
      font-size: var(--font-size-sm);
    }
    
    .contact-buttons {
      flex-direction: column;
      gap: var(--spacing-md);
    }
  }
  
  @media (max-width: 576px) {
    .contact-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-xl);
    }
    
    .contact-item i {
      font-size: 1.2rem;
      margin-bottom: var(--spacing-xs);
    }
    
    .contact-item h3 {
      font-size: var(--font-size-sm);
      margin-bottom: var(--spacing-xs);
    }
    
    .contact-item p {
      font-size: var(--font-size-xs);
    }
    
    .contact-buttons {
      margin-top: var(--spacing-lg);
    }
  }
  
  /* Simple animations for hero section */
  .animated-element {
    opacity: 0;
    transform: translateY(20px);
  }
  
  .fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
  }
  
  .delay-1 {
    animation-delay: 0.2s;
  }
  
  .delay-2 {
    animation-delay: 0.4s;
  }
  
  .delay-3 {
    animation-delay: 0.6s;
  }
  
  .delay-4 {
    animation-delay: 0.8s;
  }
  
  .delay-5 {
    animation-delay: 1s;
  }
  
  .delay-6 {
    animation-delay: 1.2s;
  }
  
  @keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
  }
  
  /* ===== Teaching Resources Page Styles ===== */
  
  /* Resources Hero Section */
  .resources-hero {
    background: linear-gradient(120deg, #f8f9fa, #e9f0f7);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
  }
  
  .resources-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern-bg.svg');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 40%;
    opacity: 0.08;
    z-index: 1;
  }
  
  .resources-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  .resources-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #133A7C;
  }
  
  .resources-hero p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: #4A6DA7;
  }
  
  /* Filter Bar */
  .filter-bar {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 80px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .filter-bar.scrolled {
    padding: 12px 0;
  }
  
  .filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  
  .filter-pill {
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4A6DA7;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #f5f7fa;
  }
  
  .filter-pill:hover {
    background-color: #e9f0f7;
    color: #133A7C;
  }
  
  .filter-pill.active {
    background-color: #FBCB4D;
    color: #133A7C;
    box-shadow: 0 2px 8px rgba(251, 203, 77, 0.3);
  }
  
  /* Featured Resources Section */
  .featured-section {
    padding: 80px 0;
    background-color: #fff;
  }
  
  .featured-resources {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
  }
  
  .featured-resource {
    display: flex;
    gap: 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .featured-resource:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  }
  
  .featured-image {
    flex: 0 0 35%;
    overflow: hidden;
    height: 300px;
  }
  
  .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .featured-resource:hover .featured-image img {
    transform: scale(1.05);
  }
  
  .featured-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
  }
  
  .resource-tag {
    display: inline-block;
    background-color: rgba(19, 58, 124, 0.1);
    color: #133A7C;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
  }
  
  .featured-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #133A7C;
    line-height: 1.3;
  }
  
  .featured-content p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    flex-grow: 1;
  }
  
  .btn-secondary {
    background-color: #4A6DA7;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    text-decoration: none;
    align-self: flex-start;
  }
  
  .btn-secondary:hover {
    background-color: #133A7C;
    transform: translateY(-2px);
  }
  
  .btn-sm {
    padding: 6px 15px;
    font-size: 0.9rem;
  }
  
  /* Resource Grid Section */
  .resource-grid-section {
    padding: 80px 0;
    background-color: #f8f9fa;
  }
  
  .resource-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
  }
  
  .resource-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  
  .resource-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
  
  .resource-icon {
    font-size: 2rem;
    color: #FBCB4D;
    margin-bottom: 20px;
  }
  
  .resource-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #133A7C;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .resource-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
  }
  
  .resource-link {
    color: #4A6DA7;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    transition: color 0.2s ease;
  }
  
  .resource-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FBCB4D;
    transition: width 0.3s ease;
  }
  
  .resource-link:hover {
    color: #133A7C;
  }
  
  .resource-link:hover::after {
    width: 100%;
  }
  
  /* Templates Section */
  .templates-section {
    padding: 80px 0;
    background-color: #fff;
  }
  
  .template-filter-bar {
    margin: 30px 0;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .templates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
  }
  
  .template-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .template-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .template-preview {
    position: relative;
    height: 220px;
    overflow: hidden;
  }
  
  .template-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .template-card:hover .template-preview img {
    transform: scale(1.08);
  }
  
  .template-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(19, 58, 124, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .template-card:hover .template-overlay {
    opacity: 1;
  }
  
  .preview-btn {
    background-color: rgba(255, 255, 255, 0.9);
    color: #133A7C;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
  }
  
  .preview-btn:hover {
    background-color: #fff;
    transform: scale(1.05);
  }
  
  .file-type {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #133A7C;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 1;
  }
  
  .file-type i {
    color: #FBCB4D;
  }
  
  .template-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  
  .template-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 12px 0;
    color: #133A7C;
    line-height: 1.3;
  }
  
  .template-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
  }
  
  .template-content .btn {
    align-self: flex-start;
    margin-top: auto;
  }
  
  /* Template Modal */
  .template-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .template-modal.active {
    opacity: 1;
    visibility: visible;
  }
  
  .modal-content {
    background-color: #fff;
    border-radius: 10px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: transform 0.3s ease;
  }
  
  .template-modal.active .modal-content {
    transform: translateY(0);
  }
  
  .modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #133A7C;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: background-color 0.2s ease;
  }
  
  .modal-close:hover {
    background-color: #FBCB4D;
  }
  
  .modal-preview {
    width: 100%;
    height: auto;
    max-height: 60vh;
    overflow: hidden;
  }
  
  .modal-preview img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .modal-details {
    padding: 30px;
  }
  
  .modal-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #133A7C;
    margin-bottom: 15px;
  }
  
  .modal-details p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
  }
  
  @media (max-width: 1200px) {
    .templates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .templates-grid {
        grid-template-columns: 1fr;
    }
    
    .template-preview {
        height: 200px;
    }
    
    .modal-content {
        flex-direction: column;
    }
    
    .modal-preview {
        max-height: 40vh;
    }
  }
  
  /* Newsletter Section */
  .newsletter-section {
    padding: 80px 0;
    background-color: #f8f9fa;
  }
  
  .newsletter-container {
    background-color: rgba(251, 203, 77, 0.1);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
  
  .newsletter-content {
    flex: 1;
  }
  
  .newsletter-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #133A7C;
  }
  
  .newsletter-content p {
    font-size: 1rem;
    color: #4A6DA7;
  }
  
  .newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
  }
  
  /* Final CTA Section */
  .final-cta {
    padding: 80px 0;
    background-color: #f8f9fa;
  }
  
  .final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  .final-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #133A7C;
    line-height: 1.2;
  }
  
  .final-cta-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #4A6DA7;
  }
  
  .final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  
  /* Responsive Styles */
  @media (max-width: 1200px) {
    .feature-grid, 
    .community-impact-grid {
        gap: 30px;
    }
    
    .workshops-grid,
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-hero-content h1 {
        font-size: 3rem;
    }
  }
  
  @media (max-width: 992px) {
    .feature-grid, 
    .community-impact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-content {
        padding-right: 0;
    }
    
    .testimonial-card,
    .impact-stats {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .bento-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .feature-content h2,
    .final-cta-content h2 {
        font-size: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .workshops-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .empower-buttons,
    .final-cta-buttons,
    .newsletter-form {
        flex-direction: column;
    }
    
    .stats-grid {
        gap: 15px;
    }
    
    .stat-item {
        padding: 10px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .bento-hero-content h1 {
        font-size: 2rem;
    }
    
    .bento-hero-content p {
        font-size: 1rem;
    }
    
    .newsletter-container {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }
  }
  
  @media (max-width: 576px) {
    .workshop-card {
        flex-direction: column;
    }
    
    .workshop-date {
        flex-direction: row;
        width: 100%;
        padding: 10px;
    }
    
    .workshop-date .month {
        margin-right: 5px;
    }
    
    .bento-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .feature-metric span {
        font-size: 1.5rem;
    }
    
    .empower-classroom,
    .testimonial-card,
    .impact-stats {
        padding: 25px;
    }
    
    .empower-classroom h3 {
        font-size: 1.5rem;
    }
    
    .empower-classroom p {
        font-size: 1rem;
    }
  }
  
  /* Templates Carousel Styles */
  .templates-carousel-container {
    position: relative;
    margin: var(--spacing-lg) 0;
    overflow: hidden;
  }
  
  .templates-carousel {
    position: relative;
    width: 100%;
  }
  
  .templates-category {
    display: none;
  }
  
  .templates-category.active {
    display: block;
  }
  
  .templates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: var(--spacing-md);
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: var(--spacing-md);
    scrollbar-width: none; /* Firefox */
  }
  
  .templates-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
  }
  
  .carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
  }
  
  .carousel-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--color-primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    pointer-events: auto;
    opacity: 0.8;
  }
  
  .carousel-nav:hover {
    opacity: 1;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
  }
  
  .carousel-nav.prev-btn {
    margin-left: var(--spacing-sm);
  }
  
  .carousel-nav.next-btn {
    margin-right: var(--spacing-sm);
  }
  
  .template-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    transform: translateY(0);
  }
  
  .scroll-indicators {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
  }
  
  .scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .scroll-dot.active {
    background-color: var(--color-primary);
    width: 24px;
    border-radius: 12px;
  }
  
  .templates-empty-state {
    display: none;
    padding: var(--spacing-xl) 0;
    text-align: center;
    background-color: var(--color-light);
    border-radius: var(--border-radius-md);
    margin-top: var(--spacing-md);
  }
  
  .empty-state-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl);
  }
  
  .empty-state-content i {
    font-size: 3rem;
    color: var(--color-gray-400);
    margin-bottom: var(--spacing-md);
  }
  
  .empty-state-content h3 {
    color: var(--color-gray-700);
    margin-bottom: var(--spacing-sm);
  }
  
  .empty-state-content p {
    color: var(--color-gray-500);
    max-width: 400px;
    margin: 0 auto;
  }
  
  /* Media queries for responsive design */
  @media (max-width: 1200px) {
    .templates-grid {
        grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 992px) {
    .templates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .templates-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .carousel-controls {
        top: auto;
        bottom: -15px;
        transform: none;
    }
  }
  
  /* Articles Carousel Styles */
  .articles-carousel-container {
    position: relative;
    margin: var(--spacing-lg) 0;
    overflow: hidden;
  }
  
  .articles-grid-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: var(--spacing-md);
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: var(--spacing-md);
    scrollbar-width: none; /* Firefox */
    grid-auto-flow: column;
  }
  
  .articles-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
  }
  
  .article-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-width: calc(33.333% - var(--spacing-md) * 2/3);
  }
  
  .article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .article-image {
    height: 200px;
    overflow: hidden;
  }
  
  .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .article-card:hover .article-image img {
    transform: scale(1.05);
  }
  
  .article-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  
  .article-tag {
    display: inline-block;
    background-color: rgba(19, 58, 124, 0.1);
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
  }
  
  .article-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-primary);
    line-height: 1.3;
  }
  
  .article-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 20px;
    flex-grow: 1;
  }
  
  .article-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-bottom: 15px;
  }
  
  .article-meta span {
    display: flex;
    align-items: center;
  }
  
  .article-meta span i {
    margin-right: 5px;
  }
  
  .articles-indicators {
    margin-top: var(--spacing-md);
  }
  
  /* Articles Carousel Navigation */
  .articles-carousel-container .carousel-controls {
    top: 50%;
    transform: translateY(-50%);
  }
  
  .articles-carousel-container .prev-btn {
    margin-left: -20px;
  }
  
  .articles-carousel-container .next-btn {
    margin-right: -20px;
  }
  
  /* Few Articles Centering */
  .articles-grid.few-articles {
    justify-content: center;
  }
  
  /* Responsive Styles for Articles Carousel */
  @media (max-width: 1200px) {
    .articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 992px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .article-card {
        min-width: calc(50% - var(--spacing-md) * 1/2);
    }
  }
  
  @media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: auto;
    }
    
    .article-card {
        min-width: 100%;
    }
    
    .articles-carousel-container .carousel-controls {
        top: auto;
        bottom: 15px;
        transform: none;
    }
    
    .article-image {
        height: 180px;
    }
  }
  
  /* Resources Hero Section */
  .resources-hero-section {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(120deg, var(--color-light), #f5f8fd);
    overflow: hidden;
    text-align: center;
  }
  
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .shape {
    position: absolute;
    border-radius: 20px;
    opacity: 0.7;
  }
  
  .shape-1 {
    top: 20%;
    right: 15%;
    width: 180px;
    height: 180px;
    background-color: rgba(251, 203, 77, 0.12);
    transform: rotate(15deg);
  }
  
  .shape-2 {
    bottom: 15%;
    right: 25%;
    width: 120px;
    height: 120px;
    background-color: rgba(19, 58, 124, 0.08);
    transform: rotate(-10deg);
  }
  
  .shape-3 {
    top: 30%;
    left: 18%;
    width: 150px;
    height: 150px;
    background-color: rgba(74, 109, 167, 0.1);
    transform: rotate(25deg);
  }
  
  .shape-4 {
    bottom: 25%;
    left: 10%;
    width: 100px;
    height: 100px;
    background-color: rgba(251, 203, 77, 0.15);
    transform: rotate(-15deg);
  }
  
  .resources-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .resources-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    animation: fadeInUp 0.8s ease-out forwards;
  }
  
  .resources-hero-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--color-text);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
  }
  
  .hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
  }
  
  .hero-cta-buttons .btn {
    min-width: 180px;
    padding: 12px 24px;
    font-size: 1.1rem;
  }
  
  @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }
  
  /* Responsive styles for hero section */
  @media (max-width: 992px) {
    .resources-hero-section {
        padding: 100px 0 80px;
    }
    
    .resources-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .resources-hero-content p {
        font-size: 1.1rem;
    }
    
    .shape-1, .shape-3 {
        transform: scale(0.8) rotate(15deg);
    }
    
    .shape-2, .shape-4 {
        transform: scale(0.8) rotate(-10deg);
    }
  }
  
  @media (max-width: 768px) {
    .resources-hero-section {
        padding: 80px 0 60px;
    }
    
    .resources-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .resources-hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-top: 1.5rem;
    }
    
    .hero-cta-buttons .btn {
        min-width: 220px;
    }
  }
  
  @media (max-width: 576px) {
    .resources-hero-section {
        padding: 70px 0 50px;
    }
    
    .resources-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .shape {
        opacity: 0.5;
    }
  }
  
  /* Resources Hero customizations */
  .resources-hero .hero-title {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
  }
  
  .resources-hero .hero-description {
    margin-bottom: 2rem;
    max-width: 90%;
  }
  
  .resources-hero .hero-about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .resources-hero .stats-badges-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform: translateY(0);
    animation: float 6s ease-in-out infinite;
  }
  
  .resources-hero .stat-badge-alt {
    padding: 1.8rem;
    min-width: 220px;
  }
  
  /* Add animation for highlighting 'Free Resources' */
  .resources-hero .hero-highlight::after {
    background: var(--color-accent);
    height: 12px;
    bottom: 4px;
  }
  
  /* Responsive adjustments for resources hero */
  @media (max-width: 992px) {
    .resources-hero .stats-badges-group {
        margin-top: 2rem;
    }
    
    .resources-hero .hero-title {
        font-size: 2.8rem;
    }
  }
  
  @media (max-width: 768px) {
    .resources-hero .hero-title {
        font-size: 2.4rem;
    }
    
    .resources-hero .hero-about-content {
        padding-bottom: 0;
    }
    
    .resources-hero .stat-badge-alt {
        margin: 0 auto;
    }
  }
  
  @media (max-width: 576px) {
    .resources-hero .hero-title {
        font-size: 2rem;
    }
    
    .resources-hero .hero-highlight::after {
        height: 8px;
        bottom: 2px;
    }
  }
  
  /* Resources Hero - Centered and Elevated Design */
  .resources-hero-centered {
    position: relative;
    padding: 130px 0 120px;
    background: linear-gradient(145deg, #f5f7fa, #e4ebf5);
    overflow: hidden;
    text-align: center;
  }
  
  .resources-hero-centered .bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .resources-hero-centered .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    background: #fff;
    filter: blur(40px);
    animation: float-slow 12s infinite ease-in-out;
  }
  
  .resources-hero-centered .shape-1 {
    width: 200px;
    height: 200px;
    top: 15%;
    right: 10%;
    animation-delay: 0s;
  }
  
  .resources-hero-centered .shape-2 {
    width: 160px;
    height: 160px;
    bottom: 20%;
    right: 20%;
    animation-delay: -3s;
  }
  
  .resources-hero-centered .shape-3 {
    width: 240px;
    height: 240px;
    top: 25%;
    left: 12%;
    animation-delay: -6s;
  }
  
  .resources-hero-centered .shape-4 {
    width: 120px;
    height: 120px;
    bottom: 15%;
    left: 18%;
    animation-delay: -9s;
  }
  
  .resources-hero-centered .hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .resources-hero-centered .eyebrow {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    position: relative;
  }
  
  .resources-hero-centered .eyebrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--color-accent);
  }
  
  .resources-hero-centered .hero-title {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1C2954;
    margin-bottom: 1.8rem;
    animation: fadeInUp 0.8s ease-out forwards;
  }
  
  .resources-hero-centered .hero-highlight {
    position: relative;
    z-index: 1;
    font-weight: 800;
  }
  
  .resources-hero-centered .hero-highlight::after {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--color-accent);
    opacity: 0.6;
  }
  
  .resources-hero-centered .hero-description {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #4A6DA7;
    margin-bottom: 2.5rem;
    max-width: 70%;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
  }
  
  .resources-hero-centered .hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
  }
  
  .resources-hero-centered .button-primary,
  .resources-hero-centered .button-outline {
    padding: 14px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 180px;
  }
  
  .resources-hero-centered .stats-badge-floating {
    position: absolute;
    bottom: -20px;
    left: 10%;
    background: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transform: translateY(0);
    animation: float 6s ease-in-out infinite, fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
  }
  
  .resources-hero-centered .stats-badge-floating .stat-number {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
  }
  
  .resources-hero-centered .stats-badge-floating .stat-label {
    font-size: 1rem;
    color: #4A6DA7;
    font-weight: 500;
  }
  
  @keyframes float-slow {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-20px) translateX(10px);
    }
  }
  
  @keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
  }
  
  @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }
  
  /* Responsive styles for the centered hero */
  @media (max-width: 1200px) {
    .resources-hero-centered .stats-badge-floating {
        left: 5%;
    }
  }
  
  @media (max-width: 992px) {
    .resources-hero-centered {
        padding: 100px 0 130px;
    }
    
    .resources-hero-centered .hero-title {
        font-size: 3.2rem;
    }
    
    .resources-hero-centered .hero-description {
        max-width: 80%;
        font-size: 1.15rem;
    }
    
    .resources-hero-centered .stats-badge-floating {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 20px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
    }
  }
  
  @media (max-width: 768px) {
    .resources-hero-centered {
        padding: 80px 0 100px;
    }
    
    .resources-hero-centered .hero-title {
        font-size: 2.5rem;
    }
    
    .resources-hero-centered .hero-description {
        max-width: 100%;
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .resources-hero-centered .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .resources-hero-centered .hero-highlight::after {
        height: 8px;
        bottom: 4px;
    }
  }
  
  @media (max-width: 576px) {
    .resources-hero-centered {
        padding: 70px 0 90px;
    }
    
    .resources-hero-centered .hero-title {
        font-size: 2rem;
    }
    
    .resources-hero-centered .eyebrow {
        font-size: 0.85rem;
    }
  }
  
  /* Redesigned Community Impact Section */
  .testimonial-section {
    padding: 6rem 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
  }
  
  .testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern-bg.svg');
    background-repeat: repeat;
    background-size: 200px;
    opacity: 0.05;
    z-index: 0;
  }
  
  .testimonial-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
  }
  
  .title-underline {
    height: 4px;
    width: 80px;
    background: linear-gradient(90deg, #1e3a8a, #2563eb);
    margin: 1.5rem auto 0;
    border-radius: 2px;
  }
  
  .testimonial-flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
  }
  
  .testimonial-showcase {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
  }
  
  .quote-icon {
    margin-bottom: 1.5rem;
  }
  
  .quote-icon i {
    font-size: 2.5rem;
    color: #1e3a8a;
    opacity: 0.2;
  }
  
  .testimonial-quote {
    flex-grow: 1;
    margin: 0;
    padding: 0;
    border-left: none;
  }
  
  .testimonial-quote p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    margin-bottom: 1.5rem;
  }
  
  .testimonial-quote cite {
    display: block;
    margin-top: 1.5rem;
  }
  
  .author-name {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.25rem;
  }
  
  .author-title {
    display: block;
    font-size: 0.9rem;
    color: #777;
  }
  
  .testimonial-showcase .btn {
    align-self: flex-start;
    margin-top: 2rem;
  }
  
  .btn-outline {
    background: transparent;
    border: 2px solid #3b5998;
    color: #3b5998;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .btn-outline:hover {
    background: #3b5998;
    color: white;
  }
  
  .btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .impact-stats {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .stat-card {
    display: flex;
    align-items: flex-start;
    background: white;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .stat-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    background: #f0f4ff;
  }
  
  .stat-content {
    flex: 1;
  }
  
  .stat-card.quality .stat-icon {
    background: #eef2ff;
    color: #1e3a8a;
  }
  
  .stat-card.engagement .stat-icon {
    background: #fffbeb;
    color: #f59e0b;
  }
  
  .stat-card.literacy .stat-icon {
    background: #ecfdf5;
    color: #10b981;
  }
  
  .stat-icon i {
    font-size: 1.5rem;
  }
  
  .stat-content h3 {
    font-size: 1.25rem;
    margin: 0 0 0.75rem 0;
    color: #1e3a8a;
  }
  
  .stat-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    .testimonial-flex-container {
        flex-direction: column;
    }
    
    .testimonial-showcase {
        margin-bottom: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
  }
  
  @media (max-width: 576px) {
    .testimonial-section {
        padding: 4rem 0;
    }
    
    .testimonial-showcase {
        padding: 1.5rem;
    }
    
    .testimonial-quote p {
        font-size: 1.1rem;
    }
    
    .stat-card {
        flex-direction: column;
    }
    
    .stat-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
  }
  
  /* Redesigned Newsletter Section */
  .newsletter-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f0f5ff 0%, #eef2ff 100%);
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
  }
  
  .newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern-bg.svg');
    background-repeat: repeat;
    background-size: 180px;
    opacity: 0.03;
    z-index: 0;
  }
  
  .newsletter-container {
    position: relative;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 25px 50px rgba(30, 58, 138, 0.08);
    display: flex;
    overflow: hidden;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .newsletter-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(30, 58, 138, 0.03), transparent 60%),
                radial-gradient(circle at bottom left, rgba(245, 158, 11, 0.03), transparent 60%);
    z-index: -1;
  }
  
  .newsletter-content {
    text-align: center;
    padding: 4.5rem;
    flex: 1;
    position: relative;
    z-index: 2;
  }
  
  .newsletter-content .section-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1e3a8a;
    background-color: #eef2ff;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    margin-bottom: 1.75rem;
    box-shadow: 0 4px 6px rgba(30, 58, 138, 0.08);
  }
  
  .newsletter-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  
  .newsletter-description {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .newsletter-form {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }
  
  .form-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }
  
  .form-group input {
    flex: 1;
    height: 3.75rem;
    padding: 0 1.5rem;
    font-size: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background-color: #f8fafc;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  }
  
  .form-group input:focus {
    outline: none;
    border-color: #1e3a8a;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
  }
  
  .form-group .btn-primary {
    height: 3.75rem;
    padding: 0 2rem;
    background-color: #1e3a8a;
    color: white;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(30, 58, 138, 0.15), 0 1px 3px rgba(30, 58, 138, 0.1);
  }
  
  .form-group .btn-primary:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(30, 58, 138, 0.2);
  }
  
  .form-privacy {
    text-align: center;
  }
  
  .form-privacy small {
    color: #94a3b8;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .form-privacy i {
    color: #1e3a8a;
  }
  
  .newsletter-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
  }
  
  .decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
  }
  
  .circle-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, rgba(37, 99, 235, 0) 70%);
    top: -100px;
    right: -100px;
  }
  
  .circle-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, rgba(245, 158, 11, 0) 70%);
    bottom: -50px;
    left: 15%;
  }
  
  .circle-3 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0) 70%);
    top: 30%;
    right: 15%;
  }
  
  
  /* Responsive Newsletter */
  @media (max-width: 992px) {
    .newsletter-section {
        padding: 6rem 0;
    }
    
    .newsletter-container {
        max-width: 90%;
    }
    
    .newsletter-content {
        padding: 3.5rem;
    }
    
    .newsletter-title {
        font-size: 2.25rem;
    }
  }
  
  @media (max-width: 768px) {
    .newsletter-section {
        padding: 5rem 0;
    }
    
    .newsletter-content {
        padding: 3rem 2.5rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-group input,
    .form-group .btn-primary {
        width: 100%;
        border-radius: 10px;
    }
    
    .form-group .btn-primary {
        height: 3.5rem;
    }
  }
  
  @media (max-width: 576px) {
    .newsletter-section {
        padding: 4rem 0;
    }
    
    .newsletter-container {
        max-width: 95%;
    }
    
    .newsletter-content {
        padding: 2.5rem 1.75rem;
    }
    
    .newsletter-title {
        font-size: 1.8rem;
    }
    
    .newsletter-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .newsletter-content .section-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .circle-1, .circle-2, .circle-3 {
        opacity: 0.3;
    }
  }
   