/* CSS Variables - Brand Colors */
:root {
    --saffron: #FF9933;
    --charcoal: #333333;
    --offwhite: #F7F7F7;
    --indigo: #4B0082;
    --teal: #008080;
    --emerald: #0F9D58;
    --smoke: #717171;
    --border: #E6E6E6;
    --skyblue: #21B5E4;
    --white: #FFFFFF;
    
    /* Spacing Scale */
    --space-xs: 12px;
    --space-sm: 20px;
    --space-md: 32px;
    --space-lg: 48px;
    --space-xl: 64px;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Container */
    --container-max: 1180px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--charcoal);
    background-color: var(--white);
}

/* Fluid media */
img, svg, video, canvas, audio, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* Prevent long words from breaking layout */
.container, section, p, li {
    overflow-wrap: anywhere;
}

/* ===== Responsive Slideshow (Homepage) ===== */
.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.mySlides { display: none; }
.mySlides img {
    display: block;
    width: 100%;
    height: auto;
}

/* Optional: helpers if arrows/dots are added later */
.slideshow-container .prev,
.slideshow-container .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 14px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    background: rgba(0,0,0,0.35);
    border-radius: 6px;
    user-select: none;
    z-index: 2;
}
.slideshow-container .next { right: 10px; }
.slideshow-container .prev { left: 10px; }
.slideshow-container .prev:hover,
.slideshow-container .next:hover { background: rgba(0,0,0,0.55); }

.slideshow-dots { text-align: center; margin-top: 8px; }
.slideshow-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 3px;
    background: #bbb;
    border-radius: 50%;
    transition: background-color .3s ease;
}
.slideshow-dots .dot.active,
.slideshow-dots .dot:hover { background: #717171; }

@media (max-width: 768px) {
    .slideshow-container .prev,
    .slideshow-container .next {
        padding: 10px;
        font-size: 16px;
    }
    .slideshow-dots .dot { width: 8px; height: 8px; }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

.section-title {
    text-align: center;
    margin-bottom: var(--space-lg);
    color: var(--charcoal);
}

.section-subtitle {
    text-align: center;
    color: var(--smoke);
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #e6851f;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: #555555;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}

.btn-outline:hover {
    background-color: var(--charcoal);
    color: var(--white);
}

/* Focus states for accessibility */
.btn:focus,
input:focus,
textarea:focus,
button:focus {
    outline: 2px solid var(--skyblue);
    outline-offset: 2px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background-color: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--border);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: var(--space-xs);
    transition: var(--transition);
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text h1 {
    font-size: 2rem;
    color: var(--saffron);
    margin: 0;
    font-weight: 700;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--smoke);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-md);
    align-items: center;
}

/* Make first logo inside nav push links to the right (desktop/tablet) */
.nav-list .logo {
    margin-right: auto;
    display: inline-flex;
    align-items: center;
}

.nav-list .logo img {
    height: 48px;
    width: auto;
}

.nav-link {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    transition: var(--transition);
    padding: var(--space-xs);
}

.nav-link:hover {
    color: var(--saffron);
}

.btn-donate {
    background-color: var(--saffron);
    color: var(--white) !important;
    border-radius: 6px;
    padding: var(--space-xs) var(--space-sm);
}

.btn-donate:hover {
    background-color: #e6851f;
    transform: translateY(-1px);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: #333333 !important;
    margin: 3px 0;
    border-radius: 2px;
    display: block;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: calc(80px + var(--space-xl)) 0 var(--space-xl);
    background: linear-gradient(135deg, var(--offwhite) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 153, 51, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(75, 0, 130, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    color: var(--charcoal);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--smoke);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.stat-card {
    text-align: center;
    padding: var(--space-md);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--saffron);
    font-family: var(--font-heading);
}

.stat-label {
    color: var(--smoke);
    font-size: 0.9rem;
    margin-top: var(--space-xs);
}

/* Sections */
section {
    padding: var(--space-xl) 0;
}

.who-we-are {
    background-color: var(--white);
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: var(--smoke);
}

/* About Us */
.about-us {
    background-color: var(--offwhite);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.about-card {
    background: var(--white);
    padding: var(--space-md);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.about-card h3 {
    color: var(--saffron);
    margin-bottom: var(--space-sm);
}

/* Sectors */
.sectors-section {
    text-align: center;
}

.sectors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    justify-content: center;
    margin-top: var(--space-sm);
}

.sector-chip {
    padding: var(--space-xs) var(--space-sm);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
}

.sector-chip.emerald { background-color: var(--emerald); }
.sector-chip.indigo { background-color: var(--indigo); }
.sector-chip.charcoal { background-color: var(--charcoal); }
.sector-chip.teal { background-color: var(--teal); }

/* Our Strength */
.our-strength {
    background-color: var(--white);
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.strength-item {
    text-align: center;
    padding: var(--space-md);
}

.strength-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

/* Programs Grid */
.programs {
    background-color: var(--offwhite);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.program-card {
    background: var(--white);
    padding: var(--space-md);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.program-card h3 {
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
    font-size: 1.25rem;
}

.program-card p {
    color: var(--smoke);
}

/* CSR Section */
.csr-section {
    background-color: var(--white);
}

.csr-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-lg);
}

.focus-chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
}

.focus-chip {
    padding: var(--space-xs) var(--space-sm);
    background-color: var(--saffron);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.checklist {
    margin-top: var(--space-sm);
}

.check-item {
    padding: var(--space-xs) 0;
    color: var(--emerald);
    font-weight: 500;
}

/* Impact Section */
.impact-section {
    background-color: var(--offwhite);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-md);
}

.impact-block {
    background: var(--white);
    padding: var(--space-md);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.impact-block h3 {
    color: var(--saffron);
    margin-bottom: var(--space-sm);
}

.impact-stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.impact-stat {
    padding: var(--space-xs) var(--space-sm);
    background-color: var(--offwhite);
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--charcoal);
}

/* Testimonials */
.testimonials {
    background-color: var(--white);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: var(--space-md);
}

.testimonial-slide.active {
    display: block;
}

.testimonial-slide blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
}

.testimonial-slide cite {
    color: var(--smoke);
    font-weight: 500;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin-top: var(--space-md);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--saffron);
}

/* Ecosystem */
.ecosystem {
    background-color: var(--offwhite);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.ecosystem-card {
    background: var(--white);
    padding: var(--space-md);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
}

.ecosystem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.ecosystem-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.ecosystem-card h3 {
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
}

.ecosystem-card p {
    color: var(--smoke);
}

/* Networks */
.networks {
    background-color: var(--white);
}

.networks-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

.network-chip {
    padding: var(--space-sm) var(--space-md);
    background-color: var(--offwhite);
    border: 2px solid var(--border);
    border-radius: 12px;
    font-weight: 500;
    color: var(--charcoal);
    transition: var(--transition);
}

.network-chip:hover {
    border-color: var(--saffron);
    background-color: var(--saffron);
    color: var(--white);
}

/* Contact Section */
.contact {
    background-color: var(--offwhite);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-lg);
}

.contact-info h3 {
    color: var(--saffron);
    margin-bottom: var(--space-sm);
}

.contact-details p {
    margin-bottom: var(--space-xs);
    color: var(--smoke);
}

.contact-details a {
    color: var(--skyblue);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: var(--space-md);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: var(--space-sm);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
    color: var(--charcoal);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-xs);
    border: 2px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--saffron);
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: var(--space-xs);
}

.success-toast {
    position: fixed;
    top: 100px;
    right: var(--space-sm);
    /* background-color: var(--emerald);
    color: var(--white);
    padding: var(--space-sm) var(--space-md); */
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transform: translateX(400px);
    transition: var(--transition);
    z-index: 1001;
}

.success-toast.show {
    transform: translateX(0);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--charcoal) 0%, #2a2a2a 100%);
    color: var(--white);
    padding: var(--space-xl) 0 var(--space-sm);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--saffron), var(--emerald), var(--indigo), var(--teal));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-section h3 {
    color: var(--saffron);
    margin-bottom: var(--space-sm);
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: var(--space-xs);
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.9;
}

.footer-section a:hover {
    color: var(--saffron);
    opacity: 1;
    transform: translateX(4px);
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.footer-logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-logo-text h3 {
    color: var(--saffron);
    margin: 0;
    font-size: 1.5rem;
}

.footer-logo-text p {
    color: var(--white);
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-mission {
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
    margin-top: var(--space-sm);
}

/* Footer Contact */
.footer-contact {
    margin-bottom: var(--space-sm);
}

.footer-contact p {
    margin-bottom: var(--space-xs);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.footer-contact a {
    color: var(--skyblue);
}

/* Social Links */
.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--saffron);
    transform: translateY(-2px);
}

/* Compliance Badges */
.compliance-badges {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.compliance-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--emerald);
}

.badge-icon {
    background-color: var(--emerald);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.compliance-badge strong {
    color: var(--saffron);
    display: block;
    margin-bottom: 2px;
}

.compliance-badge p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--smoke);
    font-size: 0.9rem;
}

/* Footer text should wrap by word, not every character */
.footer li,
.footer a,
.footer p {
  overflow-wrap: normal;
  word-break: normal;
}

/* Mobile Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: var(--space-sm);
        border-radius: 0 0 12px 12px;
    }
    
    .nav.active {
        /* visibility controlled via nav-list display in page-specific styles; keep nav itself always visible so toggle button shows */
    }
    
    .nav-list {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .nav-link {
        padding: var(--space-sm);
        border-radius: 8px;
        text-align: center;
        font-size: 1.1rem;
    }
    
    .nav-link:hover {
        background-color: var(--offwhite);
    }
    
    .btn-donate {
        margin-top: var(--space-xs);
        padding: var(--space-sm) var(--space-md);
    }

    .nav-list .logo {
        margin: 0;
    }

    .nav-list .logo img {
        height: 40px;
    }
    
    /* Header adjustments */
    .header-content {
        padding: var(--space-sm) 0;
        display: flex;
        justify-content: space-between;
    }
    
    .logo-text h1 {
        font-size: 1.5rem;
    }
    
    .logo-tagline {
        font-size: 0.7rem;
    }
    
    /* Hero section */
    .hero {
        padding: calc(80px + var(--space-lg)) 0 var(--space-lg);
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        padding: var(--space-sm) var(--space-md);
        font-size: 1rem;
    }
    
    /* Page hero */
    .page-hero {
        padding: calc(80px + var(--space-lg)) 0 var(--space-lg);
    }
    
    .page-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    /* Grids */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .about-grid,
    .strength-grid,
    .programs-grid,
    .values-grid,
    .team-grid,
    .approach-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .csr-content,
    .impact-grid,
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .ecosystem-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--space-sm);
    }
    
    .networks-grid {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
    
    .network-chip {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    /* Cards */
    .stat-card,
    .about-card,
    .program-card,
    .mv-card,
    .value-card,
    .team-member,
    .approach-step {
        margin-bottom: var(--space-sm);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Timeline */
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-marker {
        width: 30px;
        height: 30px;
        left: 0;
    }
    
    .timeline-icon {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-xs);
    }
    
    /* Typography */
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: var(--space-md);
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .page-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .page-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Header */
    .logo-text h1 {
        font-size: 1.25rem;
    }
    
    .logo-tagline {
        font-size: 0.65rem;
    }
    
    .mobile-menu-toggle {
        width: 40px;
        height: 36px;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
    }
    
    /* Sections */
    section {
        padding: var(--space-lg) 0;
    }
    
    .hero {
        padding: calc(80px + var(--space-md)) 0 var(--space-md);
    }
    
    .page-hero {
        padding: calc(80px + var(--space-md)) 0 var(--space-md);
    }
    
    /* Cards and components */
    .stat-card,
    .about-card,
    .program-card,
    .mv-card,
    .value-card,
    .team-member,
    .approach-step,
    .contact-form {
        padding: var(--space-sm);
    }
    
    /* Buttons */
    .btn {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.95rem;
    }
    
    .hero-cta .btn {
        max-width: 100%;
        margin-bottom: var(--space-xs);
    }
    
    /* Form elements */
    .form-group input,
    .form-group textarea {
        padding: var(--space-sm);
        font-size: 1rem;
    }
    
    /* Toast */
    .success-toast {
        right: var(--space-xs);
        left: var(--space-xs);
        transform: translateY(-100px);
    }
    
    .success-toast.show {
        transform: translateY(0);
    }
    
    /* Timeline */
    .timeline {
        padding: 0 var(--space-xs);
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-item {
        padding-left: 40px;
    }
    
    .timeline-marker {
        width: 20px;
        height: 20px;
        left: 0;
    }
    
    .timeline-icon {
        font-size: 0.8rem;
    }
    
    /* Focus areas and chips */
    .focus-chips,
    .sectors-grid {
        gap: var(--space-xs);
    }
    
    .focus-chip,
    .sector-chip {
        font-size: 0.85rem;
        padding: var(--space-xs) var(--space-sm);
    }
    
    /* Breadcrumb */
    .breadcrumb ol {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: var(--space-xs);
    }
    
    /* Footer */
    .footer {
        padding: var(--space-lg) 0 var(--space-sm);
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .compliance-badges {
        gap: var(--space-xs);
    }
    
    .compliance-badge {
        padding: var(--space-xs);
        font-size: 0.85rem;
    }
}

/* Page-specific Styles */

/* Active Navigation Link */
.nav-link.active {
    color: var(--saffron);
    font-weight: 600;
}

/* Page Hero */
.page-hero {
    padding: calc(80px + var(--space-xl)) 0 var(--space-xl);
    background: linear-gradient(135deg, var(--indigo) 0%, var(--charcoal) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 153, 51, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(15, 157, 88, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    color: var(--white);
}

.page-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
    line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb {
    margin-top: var(--space-md);
}

.breadcrumb ol {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: var(--space-xs);
}

.breadcrumb li {
    color: var(--white);
    opacity: 0.8;
}

.breadcrumb li:not(:last-child)::after {
    content: '→';
    margin-left: var(--space-xs);
    opacity: 0.6;
}

.breadcrumb a {
    color: var(--saffron);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    opacity: 1;
}

/* Organization Overview */
.org-overview {
    padding: var(--space-xl) 0;
    background-color: var(--white);
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.overview-content p {
    margin-bottom: var(--space-sm);
    line-height: 1.7;
    color: var(--smoke);
}

.image-placeholder {
    background: linear-gradient(135deg, var(--offwhite) 0%, var(--border) 100%);
    border-radius: 12px;
    padding: var(--space-xl);
    text-align: center;
    border: 2px dashed var(--border);
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: var(--space-sm);
    opacity: 0.6;
}

.image-placeholder p {
    color: var(--smoke);
    font-weight: 500;
}

/* Mission & Vision */
.mission-vision {
    padding: var(--space-xl) 0;
    background-color: var(--offwhite);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-lg);
}

.mv-card {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--saffron), var(--emerald));
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.mv-card h3 {
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
    font-size: 1.5rem;
}

.mv-card > p {
    color: var(--smoke);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.mv-details h4 {
    color: var(--saffron);
    margin-bottom: var(--space-xs);
    font-size: 1rem;
}

.mv-details ul {
    list-style: none;
    padding-left: 0;
}

.mv-details li {
    padding: var(--space-xs) 0;
    color: var(--smoke);
    position: relative;
    padding-left: var(--space-sm);
}

.mv-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--emerald);
    font-weight: bold;
}

/* Core Values */
.core-values {
    padding: var(--space-xl) 0;
    background-color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.value-card {
    background: var(--offwhite);
    padding: var(--space-md);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.value-card:hover {
    border-color: var(--saffron);
    transform: translateY(-4px);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.value-card h3 {
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
}

.value-card p {
    color: var(--smoke);
    line-height: 1.6;
}

/* Timeline */
.our-journey {
    padding: var(--space-xl) 0;
    background-color: var(--offwhite);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--saffron), var(--emerald));
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-lg);
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 3px solid var(--saffron);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-icon {
    font-size: 1.5rem;
}

.timeline-content {
    background: var(--white);
    padding: var(--space-md);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.timeline-year {
    color: var(--saffron);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: var(--space-xs);
}

.timeline-content h3 {
    color: var(--charcoal);
    margin-bottom: var(--space-xs);
}

.timeline-content p:last-child {
    color: var(--smoke);
    margin: 0;
    line-height: 1.6;
}

/* Leadership Team */
.leadership-team {
    padding: var(--space-xl) 0;
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.team-member {
    background: var(--offwhite);
    padding: var(--space-md);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.member-photo {
    margin-bottom: var(--space-sm);
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--saffron), var(--emerald));
    border-radius: 50%;
    margin: 0 auto var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-placeholder .placeholder-icon {
    font-size: 3rem;
    color: var(--white);
}

.member-info h3 {
    color: var(--charcoal);
    margin-bottom: var(--space-xs);
}

.member-role {
    color: var(--saffron);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.member-info p:last-child {
    color: var(--smoke);
    line-height: 1.6;
}

/* Approach Steps */
.our-approach {
    padding: var(--space-xl) 0;
    background-color: var(--offwhite);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.approach-step {
    background: var(--white);
    padding: var(--space-md);
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.approach-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--saffron);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.approach-step h3 {
    color: var(--charcoal);
    margin: var(--space-sm) 0;
    padding-top: var(--space-sm);
}

.approach-step p {
    color: var(--smoke);
    line-height: 1.6;
}

/* Certifications */
.certifications {
    padding: var(--space-xl) 0;
    background-color: var(--white);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.cert-card {
    background: var(--offwhite);
    padding: var(--space-md);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.cert-card:hover {
    border-color: var(--emerald);
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.cert-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.cert-card h3 {
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
}

.cert-card p {
    color: var(--smoke);
    line-height: 1.6;
}

/* Mobile Responsiveness for New Styles */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
    }
    
    .timeline-icon {
        font-size: 1.2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
    }
}

/* Programs Page Specific Styles */

/* Program Overview */
.program-overview {
    padding: var(--space-xl) 0;
    background-color: var(--white);
}

.program-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.stat-item {
    text-align: center;
    padding: var(--space-md);
    background: var(--offwhite);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.stat-item:hover {
    border-color: var(--saffron);
    transform: translateY(-4px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--saffron);
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--smoke);
    font-weight: 500;
}

/* Core Programs */
.core-programs {
    padding: var(--space-xl) 0;
    background-color: var(--offwhite);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-lg);
}

.program-card {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.program-card.featured {
    border: 2px solid var(--saffron);
    transform: scale(1.02);
}

.program-card.featured::before {
    content: 'Featured Program';
    position: absolute;
    top: 0;
    right: 0;
    background: var(--saffron);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-left-radius: 8px;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.program-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.program-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.program-card h3 {
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
    font-size: 1.5rem;
}

.program-description {
    color: var(--smoke);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.program-details {
    background: var(--offwhite);
    padding: var(--space-sm);
    border-radius: 8px;
    margin-bottom: var(--space-md);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-xs);
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-label {
    font-weight: 500;
    color: var(--charcoal);
}

.detail-value {
    color: var(--saffron);
    font-weight: 600;
}

.program-features h4 {
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
    font-size: 1rem;
}

.program-features ul {
    list-style: none;
    padding-left: 0;
}

.program-features li {
    padding: var(--space-xs) 0;
    color: var(--smoke);
    position: relative;
    padding-left: var(--space-sm);
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--emerald);
    font-weight: bold;
}

/* Specialized Programs */
.specialized-programs {
    padding: var(--space-xl) 0;
    background-color: var(--white);
}

.specialization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.specialization-card {
    background: var(--offwhite);
    padding: var(--space-md);
    border-radius: 12px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.specialization-card:hover {
    border-color: var(--emerald);
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.spec-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.spec-icon {
    font-size: 2rem;
}

.spec-header h3 {
    color: var(--charcoal);
    margin: 0;
}

.specialization-card p {
    color: var(--smoke);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.spec-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.highlight-tag {
    background: var(--teal);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Training Methodology */
.training-methodology {
    padding: var(--space-xl) 0;
    background-color: var(--offwhite);
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.method-step {
    background: var(--white);
    padding: var(--space-md);
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.method-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.method-step .step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--indigo);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.method-step h3 {
    color: var(--charcoal);
    margin: var(--space-sm) 0;
    padding-top: var(--space-sm);
}

.method-step p {
    color: var(--smoke);
    line-height: 1.6;
}

/* Program Benefits */
.program-benefits {
    padding: var(--space-xl) 0;
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.benefit-card {
    background: var(--offwhite);
    padding: var(--space-md);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.benefit-card:hover {
    border-color: var(--skyblue);
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.benefit-card h3 {
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
}

.benefit-card p {
    color: var(--smoke);
    line-height: 1.6;
}

/* Enrollment Process */
.enrollment-process {
    padding: var(--space-xl) 0;
    background-color: var(--offwhite);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--saffron), var(--emerald));
}

.process-step {
    position: relative;
    margin-bottom: var(--space-lg);
    padding-left: 80px;
}

.process-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 3px solid var(--saffron);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon {
    font-size: 1.5rem;
}

.process-content {
    background: var(--white);
    padding: var(--space-md);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.process-content h3 {
    color: var(--charcoal);
    margin-bottom: var(--space-xs);
}

.process-content p {
    color: var(--smoke);
    margin: 0;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--indigo) 0%, var(--charcoal) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
    font-size: 2.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Mobile Responsiveness for Programs Page */
@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .program-card.featured {
        transform: none;
    }
    
    .program-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .specialization-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 15px;
    }
    
    .process-step {
        padding-left: 60px;
    }
    
    .process-marker {
        width: 40px;
        height: 40px;
    }
    
    .process-icon {
        font-size: 1.2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .program-stats {
        grid-template-columns: 1fr;
    }
}

/* Impact & Stories Page Specific Styles */

/* Impact Overview */
.impact-overview {
    padding: var(--space-xl) 0;
    background-color: var(--white);
}

.impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.impact-stat {
    background: var(--offwhite);
    padding: var(--space-lg);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.impact-stat:hover {
    border-color: var(--saffron);
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.stat-content {
    position: relative;
}

.stat-number {
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--saffron);
    margin-bottom: var(--space-xs);
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--saffron);
}

.stat-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--space-xs);
}

.stat-description {
    color: var(--smoke);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Success Stories */
.success-stories {
    padding: var(--space-xl) 0;
    background-color: var(--offwhite);
}

.section-subtitle {
    text-align: center;
    color: var(--smoke);
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-lg);
}

.story-card {
    background: var(--white);
    border-radius: 16px;
    padding: var(--space-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.story-card.featured {
    border: 2px solid var(--emerald);
    transform: scale(1.02);
}

.story-card.featured::before {
    content: 'Featured Story';
    position: absolute;
    top: 0;
    right: 0;
    background: var(--emerald);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-left-radius: 8px;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.story-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.story-header {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.story-avatar {
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--saffron), var(--emerald));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-icon {
    font-size: 2rem;
    color: var(--white);
}

.story-info h3 {
    color: var(--charcoal);
    margin-bottom: var(--space-xs);
}

.story-role {
    color: var(--saffron);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.story-tags {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
}

.tag {
    background: var(--teal);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.story-content blockquote {
    font-style: italic;
    color: var(--smoke);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    position: relative;
    padding-left: var(--space-md);
    border-left: 3px solid var(--saffron);
}

.story-impact {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.impact-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.impact-label {
    font-size: 0.9rem;
    color: var(--smoke);
}

.impact-value {
    font-weight: 600;
    color: var(--emerald);
    font-size: 1.1rem;
}

/* Impact Areas */
.impact-areas {
    padding: var(--space-xl) 0;
    background-color: var(--white);
}

.impact-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.impact-area {
    background: var(--offwhite);
    padding: var(--space-md);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.impact-area:hover {
    border-color: var(--indigo);
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.area-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.impact-area h3 {
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
}

.impact-area p {
    color: var(--smoke);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.area-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.area-stat {
    background: var(--skyblue);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--space-xl) 0;
    background-color: var(--offwhite);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto var(--space-lg);
    overflow: hidden;
    border-radius: 16px;
}

.testimonial-slide {
    display: none;
    background: var(--white);
    padding: var(--space-xl);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.testimonial-slide.active {
    display: block;
}

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

.testimonial-text blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--smoke);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    position: relative;
}

.testimonial-text blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--saffron);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar .avatar-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--indigo), var(--teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar .avatar-icon {
    font-size: 1.5rem;
    color: var(--white);
}

.author-info {
    text-align: left;
}

.author-info h4 {
    color: var(--charcoal);
    margin-bottom: var(--space-xs);
}

.author-info p {
    color: var(--saffron);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.rating {
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.slider-btn {
    background: var(--saffron);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: var(--charcoal);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: var(--space-xs);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--saffron);
}

.dot:hover {
    background: var(--emerald);
}

/* Impact Metrics */
.impact-metrics {
    padding: var(--space-xl) 0;
    background-color: var(--white);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.metric-category {
    background: var(--offwhite);
    padding: var(--space-lg);
    border-radius: 16px;
    transition: var(--transition);
}

.metric-category:hover {
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.metric-category h3 {
    color: var(--charcoal);
    margin-bottom: var(--space-md);
    text-align: center;
    font-size: 1.3rem;
}

.metrics-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm);
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--saffron);
}

.metric-label {
    color: var(--smoke);
    font-weight: 500;
}

.metric-value {
    color: var(--emerald);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Recognition */
.recognition {
    padding: var(--space-xl) 0;
    background-color: var(--offwhite);
}

.recognition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.recognition-item {
    background: var(--white);
    padding: var(--space-md);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.recognition-item:hover {
    border-color: var(--emerald);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.recognition-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.recognition-item h3 {
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
}

.recognition-item p {
    color: var(--smoke);
    line-height: 1.6;
}

/* Mobile Responsiveness for Impact Page */
@media (max-width: 768px) {
    .impact-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .story-card.featured {
        transform: none;
    }
    
    .story-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .story-header {
        flex-direction: column;
        text-align: center;
    }
    
    .story-impact {
        justify-content: center;
    }
    
    .impact-areas-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-info {
        text-align: center;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .recognition-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .testimonial-text blockquote {
        font-size: 1.1rem;
    }
}

/* Contact & Get Involved Page Specific Styles */

/* Contact Information Section */
.contact-info-section {
    padding: var(--space-xl) 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.contact-details h2 {
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
}

.contact-intro {
    color: var(--smoke);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-method {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--offwhite);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-method:hover {
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.method-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.method-content h3 {
    color: var(--charcoal);
    margin-bottom: var(--space-xs);
}

.method-content p {
    color: var(--smoke);
    margin-bottom: var(--space-sm);
    line-height: 1.5;
}

.method-link {
    color: var(--saffron);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.method-link:hover {
    color: var(--emerald);
}

.contact-form-container {
    background: var(--offwhite);
    padding: var(--space-lg);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: var(--charcoal);
    margin-bottom: var(--space-lg);
    text-align: center;
}

/* Get Involved Section */
.get-involved {
    padding: var(--space-xl) 0;
    background-color: var(--offwhite);
}

.involvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.involvement-card {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.involvement-card.featured {
    border: 2px solid var(--saffron);
    transform: scale(1.02);
}

.involvement-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    right: 0;
    background: var(--saffron);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-left-radius: 8px;
}

.involvement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.involvement-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.involvement-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.involvement-card h3 {
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
}

.involvement-card > p {
    color: var(--smoke);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.involvement-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-lg);
    text-align: left;
}

.involvement-benefits li {
    padding: var(--space-xs) 0;
    color: var(--smoke);
    position: relative;
    padding-left: var(--space-sm);
}

.involvement-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--emerald);
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    padding: var(--space-xl) 0;
    background-color: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-md);
}

.faq-item {
    background: var(--offwhite);
    padding: var(--space-md);
    border-radius: 12px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.faq-item:hover {
    border-color: var(--teal);
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--smoke);
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsiveness for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .involvement-grid {
        grid-template-columns: 1fr;
    }
    
    .involvement-card.featured {
        transform: none;
    }
    
    .involvement-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.footer {
  background: linear-gradient(135deg, #0a192f, #1e3a5f); /* industrial blue */
  color: #e5e7eb;
  padding: 50px 0 20px;
  font-family: "Inter", sans-serif;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr; /* left, middle, right */
  gap: 40px;
  align-items: flex-start;
}

.footer-col h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-logo {
  width: 100px;
  margin-bottom: 12px;
}

.footer-mission {
  font-size: 13px;
  line-height: 1.6;
  color: #cbd5e1;
}

/* Middle links grid */
.links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 6px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #d1d5db;
  transition: color .2s ease;
}

.footer-col ul li a:hover {
  color: #ff7f27; /* orange hover */
}

/* Contact & social */
.footer-contact p {
  margin: 5px 0;
}

.footer-contact a {
  color: #ffffff;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #ff7f27;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1e3a5f;
  border: 1px solid #334155;
  color: #fff;
  text-decoration: none;
  transition: all .2s ease;
}

.social-links a:hover {
  background: #ff7f27;
  border-color: #ff7f27;
  color: #fff;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  border-top: 1px solid #334155;
  padding-top: 14px;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .links-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Center footer content on small screens */
  .footer-col,
  .footer-col h3 {
    text-align: center;
  }

  /* Center brand block and logo */
  .footer-logo {
    display: block;
    margin: 0 auto 12px;
  }

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

  /* Center contact lines and social icons */
  .footer-contact p {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}
/* Section Style */
.text-image-section {
  padding: 60px 20px;
  background: #f9fafb;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Flexbox Layout */
.text-image-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* Left Side - Text */
.text-content {
  flex: 1; /* Takes up available space */
  max-width: 50%; /* Limit max width */
}

.text-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111827;
}

.text-content p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 20px;
}

.text-content .btn-primary {
  padding: 12px 24px;
  background-color: #3b82f6;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
}

.text-content .btn-primary:hover {
  background-color: #2563eb;
}

/* Right Side - Image */
.image-content {
  flex: 1; /* Takes up available space */
  max-width: 50%;
}

.image-content img {
  width: 100%; /* Ensures the image takes up full container width */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .text-image-content {
    flex-direction: column; /* Stacks the content on smaller screens */
    text-align: center; /* Center the text */
  }

  .text-content,
  .image-content {
    max-width: 100%; /* Make content take up full width */
  }

  .image-content img {
    max-width: 90%; /* Adjust image width */
    margin: 20px 0; /* Add some space around the image */
  }
}

@media (max-width: 1024px) {
  .text-image-section,
  .image-text-section {
    padding: 40px 16px;
  }

  .text-image-content,
  .image-text-content {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .text-image-section,
  .image-text-section {
    padding: 32px 12px;
  }

  .text-content h2 {
    font-size: 22px;
  }

  .text-content p {
    font-size: 14px;
  }
}

/* Section Style */
.image-text-section {
  padding: 60px 20px;
  background: #f9fafb;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Flexbox Layout */
.image-text-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* Left Side - Image */
.image-content {
  flex: 1; /* Takes up available space */
  max-width: 50%; /* Limit max width */
}

.image-content img {
  width: 100%; /* Ensures the image takes up full container width */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Right Side - Text */
.text-content {
  flex: 1; /* Takes up available space */
  max-width: 50%;
}

.text-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111827;
}

.text-content p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 20px;
}

.text-content .btn-primary {
  padding: 12px 24px;
  background-color: #3b82f6;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
}

.text-content .btn-primary:hover {
  background-color: #2563eb;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .image-text-content {
    flex-direction: column; /* Stacks the content on smaller screens */
    text-align: center; /* Center the text */
  }

  .image-content,
  .text-content {
    max-width: 100%; /* Make content take up full width */
  }

  .image-content img {
    max-width: 90%; /* Adjust image width */
    margin: 20px 0; /* Add some space around the image */
  }
}

.footer-logo {
  width: 170px; /* slightly larger */
  height: auto;
  margin-bottom: 12px;
  background-color: #ffffff; /* solid white background */
  padding: 12px 16px; /* more breathing space */
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25); /* makes white box visible */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.25);
}


/* about us section team member */
.team-member {
    display: block;
    text-align: left;
}

.member-info {
    padding: 20px;
    width: 100%;
}



.text-content {
  text-align: center;   /* Centers the text and button */
}

.text-content .btn-primary {
  display: inline-block;
  margin: 0 auto;       /* Ensures the button stays centered */
}



.text-content p {
  text-align: justify;
}



.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.overview-content {
    width: 100%;
}

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

.overview-image img {
    width: 100%;
    height: auto;
    max-width: 420px;
    object-fit: contain;
    border-radius: 8px;
}

@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .overview-content {
        text-align: left;
    }

    .overview-image {
        margin-top: 1rem;
        justify-content: center;
    }

    .overview-image img {
        max-width: 100%;
    }
}



.program-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 150px;
    padding: 1.5rem;
    background-color: #f8f8f8;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff8a00;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}
