:root {
    --primary: #222;
    --secondary: #666;
    --accent: #fff;
    --background: #fff;
    --footer-bg: #f5f5f5;
    --footer-dark: #222;
    --footer-text: #222;
    --btn-solid: #222;
    --btn-solid-hover: #444;
    --btn-contrast: #fff;
    --text-dark: #222;
    --text-light: #fff;
    --explore-title: #222;
}

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

body {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    background: var(--background);
    color: var(--text-dark);
    min-height: 100vh;
    line-height: 1.6;
}

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

.header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    border-bottom: 1px solid #e0e0e0;
    padding: 0.5rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #fff;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #e0e0e0;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 24px;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 1rem;
    padding: 4px 0;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.donate-btn, .btn-primary {
    background: var(--btn-solid);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 32px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.donate-btn:hover, .btn-primary:hover {
    background: var(--btn-solid-hover);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.footer {
    background: var(--footer-bg);
    color: var(--footer-dark);
    padding: 2.5rem 0 0.5rem 0;
    font-size: 1rem;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    border-top: 2px solid #e0e0e0;
}
.footer-social .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 8px 0 0;
    border-radius: 50%;
    background: #fff;
    color: #222;
    font-size: 1.4rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1.5px solid #e0e0e0;
    text-decoration: none;
}
.footer-social .social-icon i {
    color: #222 !important;
    filter: grayscale(1) brightness(0.7);
    transition: color 0.2s, filter 0.2s;
}
.footer-social .social-icon:hover,
.footer-social .social-icon:focus {
    background: #222;
    color: #fff;
    border-color: #222;
}
.footer-social .social-icon:hover i,
.footer-social .social-icon:focus i {
    color: #fff !important;
    filter: grayscale(0) brightness(1);
}

    --primary: #9B177E;
    --secondary: #E8988A;
    --accent: #2A1458;
    --background: linear-gradient(135deg, #FFEAD8 0%, #E8988A 35%, #9B177E 70%, #2A1458 100%);
    --footer-bg: #f5f6fa;
    --footer-dark: #111;
    --footer-text: #fff;
    --btn-solid: linear-gradient(90deg, #FFB347 0%, #FF5E62 100%);
    --btn-solid-hover: linear-gradient(90deg, #9B177E 0%, #2A1458 100%);
    --btn-contrast: #FFEAD8;
    --text-dark: #2A1458;
    --text-light: #fff;
    --explore-title: #9B177E;
}

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

body {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    background: var(--background);
    color: var(--text-dark);
    min-height: 100vh;
    line-height: 1.6;
}

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

/* Header Styles */
.header {
    background: var(--glass);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e0e0e0;
    padding: 0.5rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #fff;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(162,89,247,0.08);
    border: 1px solid #e0e0e0;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 24px;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #22223b;
    font-weight: 500;
    font-size: 1rem;
    padding: 4px 0;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

/* Minimal impact counters */
.impact-counters {
    background: var(--glass);
    box-shadow: var(--shadow);
    border-radius: 16px;
    padding: 32px 24px;
    margin: 40px 0;
    display: flex;
    justify-content: center;
    gap: 32px;
}

.counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.counter-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.counter-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
}

.counter-label {
    font-size: 1rem;
    color: #22223b;
    opacity: 0.85;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--lavender-dark);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--lavender-main);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.donate-btn, .btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 32px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(162,89,247,0.12);
    transition: transform 0.2s, box-shadow 0.2s;
}
.donate-btn:hover, .btn-primary:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 32px rgba(248,87,166,0.18);
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128c7e;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-light);
    padding: 120px 0 80px;
    text-align: center;
    border-radius: 0 0 40px 40px;
    box-shadow: var(--shadow);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Impact Counters */
.impact-counters {
    background: var(--glass);
    box-shadow: var(--shadow);
    border-radius: 20px;
    padding: 40px;
    margin: 50px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    backdrop-filter: blur(10px);
}

.counter {
    text-align: center;
}

.counter-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.counter-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Programs Preview */
.programs-preview {
    margin: 60px 0;
}

.programs-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.program-card {
    background: var(--glass);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 2rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.2s, box-shadow 0.2s;
}

.program-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 40px rgba(67,233,123,0.12);
}

.program-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--lavender-main);
}

.program-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.program-card p {
    opacity: 0.9;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn, .btn-primary, .btn-secondary, .donate-btn {
    background: var(--btn-solid);
    color: var(--text-light);
    border: none;
    border-radius: 30px;
    padding: 12px 32px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(155,23,126,0.12);
    transition: background 0.2s, box-shadow 0.2s, color 0.2s;
    font-size: 1rem;
    margin-right: 10px;
}
.btn:hover, .btn-primary:hover, .btn-secondary:hover, .donate-btn:hover {
    background: var(--btn-solid-hover);
    color: var(--btn-contrast);
    box-shadow: 0 8px 32px rgba(42,20,88,0.18);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 30px;
    padding: 12px 32px;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--btn-contrast);
}
.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: #f8fafc;
}

/* Custom Footer Styles */
.footer {
    background: #f8fafc;
    color: #22223b;
    padding: 2.5rem 0 0.5rem 0;
    font-size: 1rem;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    border-top: 2px solid #e0e0e0;
}
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-section {
    flex: 1 1 220px;
    min-width: 180px;
    margin-bottom: 1.5rem;
}
.footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.footer-logo-img {
    height: 56px;
    width: auto;
    border-radius: 10px;
    background: #fff;
    padding: 8px 12px;
}
.footer-mission {
    font-size: 0.98rem;
    color: var(--accent);
    margin-top: 0.5rem;
    opacity: 0.9;
    line-height: 1.5;
}
.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--explore-title);
    margin-bottom: 0.7rem;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: var(--accent);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--primary);
}
.footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.98rem;
    color: var(--accent);
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.footer-social .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 8px 0 0;
    border-radius: 50%;
    background: #fff;
    color: #222;
    font-size: 1.4rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(162,89,247,0.08);
    border: 1.5px solid #e0e0e0;
    text-decoration: none;
}
.footer-social .social-icon i {
    color: #222 !important;
    filter: grayscale(1) brightness(0.7);
    transition: color 0.2s, filter 0.2s;
}
.footer-social .social-icon:hover,
.footer-social .social-icon:focus {
    background: #222;
    color: #fff;
    border-color: #222;
}
.footer-social .social-icon:hover i,
.footer-social .social-icon:focus i {
    color: #fff !important;
    filter: grayscale(0) brightness(1);
}

.footer-social .social-icon:hover {
    background: linear-gradient(135deg, #E8988A 0%, #9B177E 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(155,23,126,0.18);
    border-color: #9B177E;
}
.footer-social .social-icon .fa-facebook-f { color: #1877f3; }
.footer-social .social-icon .fa-instagram { color: #e4405f; }
.footer-social .social-icon .fa-x-twitter { color: #222; }
.footer-social .social-icon .fa-whatsapp { color: #25d366; }

.footer-social .social-icon:hover {
    background: linear-gradient(135deg, #E8988A 0%, #9B177E 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(155,23,126,0.18);
}
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}
.social-icon img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    padding: 4px;
    transition: box-shadow 0.2s;
}
.social-icon img:hover {
    box-shadow: 0 2px 8px rgba(155,23,126,0.18);
}
.footer-bottom {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 12px 0 8px 0;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    margin-top: 0.5rem;
}
@media (max-width: 900px) {
    .footer-main {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .footer-section {
        margin-bottom: 2rem;
    }
}
@media (max-width: 600px) {
    .footer-main {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .footer-section {
        margin-bottom: 1.2rem;
    }
    .footer-logo-img {
        height: 40px;
    }
    .footer-title {
        font-size: 1rem;
    }
    .footer-mission {
        font-size: 0.92rem;
    }
    .footer-contact p {
        font-size: 0.92rem;
    }
    .footer-bottom {
        font-size: 0.85rem;
    }
}

.about-text {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.vision, .mission {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.vision h3, .mission h3 {
    color: #2563eb;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.vision h3 i, .mission h3 i {
    margin-right: 10px;
}

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

.mission li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.mission li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.training-centers h3 {
    color: #2563eb;
    margin-bottom: 30px;
    font-size: 1.5rem;
    text-align: center;
}

.centers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.center-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    border-left: 4px solid #2563eb;
}

.center-card h4 {
    color: #2563eb;
    margin-bottom: 10px;
}

.center-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Objectives Section */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.objective-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.objective-card i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 20px;
}

.objective-card h3 {
    color: #2563eb;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Programs Section */
.programs {
    background: #f8fafc;
}

.programs-detailed {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.program-detail {
    display: flex;
    gap: 30px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    align-items: center;
}

.program-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.program-content h3 {
    color: #2563eb;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.program-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.program-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat {
    background: #e0f2fe;
    color: #2563eb;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Join Section */
.join {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

.join .section-header h2,
.join .section-header p {
    color: white;
}

.join-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.volunteer-form,
.partnership {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.volunteer-form h3,
.partnership h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.volunteer-form h3 i,
.partnership h3 i {
    margin-right: 10px;
}

.partnership-types {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.partnership-card {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.partnership-card i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fbbf24;
}

.partnership-card h4 {
    margin-bottom: 10px;
}

/* Form Styles */
.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.join .form-group input,
.join .form-group select,
.join .form-group textarea {
    background: rgba(255,255,255,0.9);
    color: #333;
}

.join .form-group label {
    color: white;
}

/* Donate Section */
.donate {
    background: #f8fafc;
}

.donate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.donate-appeal h3 {
    color: #2563eb;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.donation-impact {
    margin: 30px 0;
}

.impact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
}

.impact-item:last-child {
    border-bottom: none;
}

.amount {
    font-weight: 600;
    color: #2563eb;
    font-size: 1.1rem;
}

.impact {
    color: #666;
}

.bank-details {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.bank-details h3 {
    color: #2563eb;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.bank-details h3 i {
    margin-right: 10px;
}

.bank-info {
    margin-bottom: 30px;
}

.bank-item {
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

.bank-item:last-child {
    border-bottom: none;
}

.upi-section {
    text-align: center;
    margin: 30px 0;
    padding: 30px;
    background: #f8fafc;
    border-radius: 10px;
}

.upi-section h4 {
    color: #2563eb;
    margin-bottom: 20px;
}

.qr-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #666;
}

.qr-placeholder i {
    font-size: 4rem;
    color: #2563eb;
}

.receipt-form h4 {
    color: #2563eb;
    margin-bottom: 20px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin-bottom: 8px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: #2563eb;
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #2563eb;
    margin-bottom: 8px;
}

.contact-item p,
.contact-item a {
    color: #666;
    text-decoration: none;
}

.contact-item a:hover {
    color: #2563eb;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #2563eb;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    padding: 2.5rem 0 1rem;
    border-radius: 40px 40px 0 0;
    box-shadow: var(--shadow);
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #2563eb;
}

.footer-logo h3 {
    font-size: 1.5rem;
}

.footer-logo p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.legal-info p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-quick-links a {
    color: #fff;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.footer-quick-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-section p {
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer-section p i {
    margin-right: 8px;
    color: #2563eb;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #1d4ed8;
}

.cta-footer {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .impact-counters {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
    }
    
    .program-detail {
        flex-direction: column;
        text-align: center;
    }
    
    .join-content {
        grid-template-columns: 1fr;
    }
    
    .donate-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-footer {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .impact-counters {
        grid-template-columns: 1fr;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo-text p {
        font-size: 0.8rem;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cta-buttons,
    .donate-btn,
    .whatsapp-btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        background: none;
        color: black;
    }
}
.header.minimal-header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo-box {
    display: flex;
    align-items: center;
    padding-left: 2rem;
}
.header-logo-img {
    height: 48px;
    width: auto;
    border-radius: 8px;
    background: #f5f8fa;
    padding: 4px 8px;
}
.header-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0 2rem 0 0;
}
.header-nav a {
    color: #1a237e;
    font-weight: 500;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
}
.header-nav a:hover {
    color: #1976d2;
}
.impact-counters {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0 1rem 0;
}
.counter {
    background: #e3f2fd;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 1px 4px rgba(26,35,126,0.06);
}
.counter-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1976d2;
}
.counter-label {
    display: block;
    font-size: 1rem;
    color: #333;
    margin-top: 0.3rem;
}
.footer {
    background: #1a237e;
    color: #fff;
    padding: 2.5rem 0 1.2rem 0;
}
.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-col {
    flex: 1 1 220px;
    margin: 0 1.5rem;
    min-width: 180px;
}
.footer-logo-col {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.footer-logo-img {
    height: 64px;
    width: auto;
    border-radius: 10px;
    background: #fff;
    padding: 8px 12px;
}
.footer-links-col h4,
.footer-contact-col h4 {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    color: #90caf9;
}
.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links-col ul li {
    margin-bottom: 0.5rem;
}
.footer-links-col ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}
.footer-links-col ul li a:hover {
    color: #1976d2;
}
.footer-contact-col p {
    margin: 0.3rem 0;
    font-size: 1rem;
}
.footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}
.social-icon img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    padding: 4px;
    transition: box-shadow 0.2s;
}
.social-icon img:hover {
    box-shadow: 0 2px 8px rgba(25,118,210,0.18);
}
@media (max-width: 900px) {
    .footer-columns {
        flex-direction: column;
        align-items: stretch;
    }
    .footer-col {
        margin-bottom: 2rem;
    }
}
.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #2563eb;
}

.footer-logo h3 {
    font-size: 1.5rem;
}

.footer-logo p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.legal-info p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-quick-links a {
    color: #fff;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.footer-quick-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-section p {
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer-section p i {
    margin-right: 8px;
    color: #2563eb;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #1d4ed8;
}

.cta-footer {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .impact-counters {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
    }
    
    .program-detail {
        flex-direction: column;
        text-align: center;
    }
    
    .join-content {
        grid-template-columns: 1fr;
    }
    
    .donate-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-footer {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .impact-counters {
        grid-template-columns: 1fr;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo-text p {
        font-size: 0.8rem;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cta-buttons,
    .donate-btn,
    .whatsapp-btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        background: none;
        color: black;
    }
}
.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #2563eb;
}

.footer-logo h3 {
    font-size: 1.5rem;
}

.footer-logo p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.legal-info p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-quick-links a {
    color: #fff;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.footer-quick-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-section p {
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer-section p i {
    margin-right: 8px;
    color: #2563eb;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #1d4ed8;
}

.cta-footer {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .impact-counters {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
    }
    
    .program-detail {
        flex-direction: column;
        text-align: center;
    }
    
    .join-content {
        grid-template-columns: 1fr;
    }
    
    .donate-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-footer {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .impact-counters {
        grid-template-columns: 1fr;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo-text p {
        font-size: 0.8rem;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cta-buttons,
    .donate-btn,
    .whatsapp-btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        background: none;
        color: black;
    }
}
.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #2563eb;
}

.footer-logo h3 {
    font-size: 1.5rem;
}

.footer-logo p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.legal-info p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-quick-links a {
    color: #fff;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.footer-quick-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-section p {
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer-section p i {
    margin-right: 8px;
    color: #2563eb;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #1d4ed8;
}

.cta-footer {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .impact-counters {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
    }
    
    .program-detail {
        flex-direction: column;
        text-align: center;
    }
    
    .join-content {
        grid-template-columns: 1fr;
    }
    
    .donate-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-footer {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .impact-counters {
        grid-template-columns: 1fr;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo-text p {
        font-size: 0.8rem;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea: focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cta-buttons,
    .donate-btn,
    .whatsapp-btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        background: none;
        color: black;
    }
}
.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #2563eb;
}

.footer-logo h3 {
    font-size: 1.5rem;
}

.footer-logo p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.legal-info p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-quick-links a {
    color: #fff;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.footer-quick-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-section p {
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer-section p i {
    margin-right: 8px;
    color: #2563eb;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #1d4ed8;
}

.cta-footer {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .impact-counters {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
    }
    
    .program-detail {
        flex-direction: column;
        text-align: center;
    }
    
    .join-content {
        grid-template-columns: 1fr;
    }
    
    .donate-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-footer {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .impact-counters {
        grid-template-columns: 1fr;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo-text p {
        font-size: 0.8rem;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea: focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cta-buttons,
    .donate-btn,
    .whatsapp-btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        background: none;
        color: black;
    }
}
.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #2563eb;
}

.footer-logo h3 {
    font-size: 1.5rem;
}

.footer-logo p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.legal-info p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-quick-links a {
    color: #fff;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.footer-quick-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-section p {
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer-section p i {
    margin-right: 8px;
    color: #2563eb;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #1d4ed8;
}

.cta-footer {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .impact-counters {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
    }
    
    .program-detail {
        flex-direction: column;
        text-align: center;
    }
    
    .join-content {
        grid-template-columns: 1fr;
    }
    
    .donate-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-footer {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .impact-counters {
        grid-template-columns: 1fr;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo-text p {
        font-size: 0.8rem;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea: focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cta-buttons,
    .donate-btn,
    .whatsapp-btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        background: none;
        color: black;
    }
}
.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #2563eb;
}

.footer-logo h3 {
    font-size: 1.5rem;
}

.footer-logo p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.legal-info p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-quick-links a {
    color: #fff;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.footer-quick-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-section p {
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer-section p i {
    margin-right: 8px;
    color: #2563eb;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #1d4ed8;
}

.cta-footer {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .impact-counters {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
    }
    
    .program-detail {
        flex-direction: column;
        text-align: center;
    }
    
    .join-content {
        grid-template-columns: 1fr;
    }
    
    .donate-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-footer {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .impact-counters {
        grid-template-columns: 1fr;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo-text p {
        font-size: 0.8rem;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea: focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cta-buttons,
    .donate-btn,
    .whatsapp-btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        background: none;
        color: black;
    }
}
.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #2563eb;
}

.footer-logo h3 {
    font-size: 1.5rem;
}

.footer-logo p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.legal-info p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-quick-links a {
    color: #fff;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.footer-quick-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-section p {
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer-section p i {
    margin-right: