/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #222222;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

/* COLORS */
:root {
    --primary-blue: #1E73BE;
    --primary-red: #E74C3C;
    --green: #2E8B57;
    --orange: #F39C12;
    --dark: #222222;
    --light-gray: #F5F5F5;
}

/* BUTTONS */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

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

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

.btn-primary:hover {
    background-color: #155a8c;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: white;
}

/* ===== NAVBAR CORRIGÉE ===== */
.navbar {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* LOGO UNIFIÉ */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.logo-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.logo-slogan {
    font-size: 0.65rem;
    color: var(--green);
    font-style: italic;
}

/* NAV MENU DESKTOP */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-blue);
}

/* HAMBURGER MENU - Version desktop cachée */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--primary-blue);
    transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Desktop Donate Button */
.desktop-only {
    display: block;
    flex-shrink: 0;
    margin-left: 15px;
}

/* Mobile Only Button */
.mobile-only {
    display: none;
}

/* Version mobile du logo */
@media screen and (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-slogan {
        font-size: 0.6rem;
    }
}

/* Version très petit écran - cacher le texte */
@media screen and (max-width: 480px) {
    .logo-info {
        display: none;
    }
    
    .logo-img {
        height: 40px;
    }
}

/* ===== RESPONSIVE NAVBAR (MOBILE) ===== */
@media screen and (max-width: 1100px) {
    .nav-menu {
        gap: 15px;
    }
    
    .nav-menu a {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 992px) {
    /* Afficher le hamburger */
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Transformation du menu desktop en menu mobile */
    .nav-menu {
        position: fixed !important;
        left: -100% !important;
        top: 80px !important;
        width: 100% !important;
        height: calc(100vh - 80px) !important;
        background-color: white !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding: 40px 20px !important;
        margin: 0 !important;
        transition: left 0.3s ease !important;
        z-index: 999 !important;
        display: flex !important;
        list-style: none !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
        overflow-y: auto !important;
        gap: 0 !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
    }
    
    .nav-menu li {
        margin: 15px 0 !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .nav-menu a {
        font-size: 1.1rem !important;
        padding: 12px 20px !important;
        display: inline-block !important;
        white-space: normal !important;
    }
    
    /* Cacher le bouton donate desktop */
    .desktop-only {
        display: none !important;
    }
    
    /* Afficher le bouton donate mobile */
    .mobile-only {
        display: block !important;
        margin-top: 20px !important;
    }
    
    .mobile-only .btn {
        width: 200px !important;
        margin: 0 auto !important;
    }
}

@media screen and (max-width: 768px) {
    .navbar .container {
        height: 70px;
        padding: 0 15px;
    }
    
    .nav-menu {
        top: 70px !important;
        height: calc(100vh - 70px) !important;
    }
}

/* PAGE HERO */
.page-hero {
    padding: 160px 0 80px;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* HOME PAGE SPECIFIC */
.hero h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--orange);
    margin: 2rem 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 2rem;
}

/* SECTIONS */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

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

/* TRUST SECTION */
.trust {
    padding: 60px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.trust-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.partners {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.partner {
    font-weight: 600;
    color: var(--primary-blue);
}

/* GRIDS */
.members-grid,
.programs-grid,
.stories-grid,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 3rem 0;
}

/* CARDS */
.member-card,
.program-card,
.story-card,
.gallery-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.member-card:hover,
.program-card:hover,
.story-card:hover,
.gallery-item:hover {
    transform: translateY(-5px);
}

.member-card img,
.program-card img,
.story-card img,
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

/* STATS */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 3rem 0;
}

.stat {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

/* IMPACT SECTION (blue background) */
.impact {
    background-color: var(--primary-blue);
    color: white;
}

.impact .stat-number,
.impact .stat-label {
    color: white;
}

/* TESTIMONIAL */
.testimonial {
    background-color: var(--light-gray);
    text-align: center;
}

.testimonial blockquote {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 2rem auto;
    font-style: italic;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-blue);
}

/* CTA SECTION */
.cta {
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../assets/images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.cta p {
    max-width: 800px;
    margin: 1.5rem auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 2rem;
}

/* FORMS */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
}

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

/* FOOTER */
footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
}

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

/* ===== RESPONSIVE MOBILE ===== */
@media screen and (max-width: 992px) {
    /* Afficher le hamburger */
    .hamburger {
        display: block !important;
    }
    
    /* Transformation du menu desktop en menu mobile */
    .nav-menu {
        position: fixed !important;
        left: -100% !important;
        top: 80px !important;
        width: 100% !important;
        height: calc(100vh - 80px) !important;
        background-color: white !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding: 40px 20px !important;
        margin: 0 !important;
        transition: left 0.3s ease !important;
        z-index: 999 !important;
        display: flex !important;
        list-style: none !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
        overflow-y: auto !important;
        gap: 0 !important;
    }
    
    /* Afficher le menu quand actif */
    .nav-menu.active {
        left: 0 !important;
    }
    
    /* Style des liens dans le menu mobile */
    .nav-menu li {
        margin: 15px 0 !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .nav-menu a {
        font-size: 1.2rem !important;
        padding: 12px 20px !important;
        display: inline-block !important;
    }
    
    /* Cacher le bouton donate desktop */
    .desktop-only {
        display: none !important;
    }
    
    /* Afficher le bouton donate mobile */
    .mobile-only {
        display: block !important;
        margin-top: 20px !important;
    }
    
    .mobile-only .btn {
        width: 200px !important;
        margin: 0 auto !important;
    }
    
    /* Ajustements généraux */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .hero h1,
    .page-hero h1 {
        font-size: 2rem !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .btn {
        width: 100% !important;
        max-width: 300px !important;
    }
}

@media screen and (max-width: 480px) {
    .nav-menu {
        top: 70px !important;
        height: calc(100vh - 70px) !important;
    }
    
    .stat-number {
        font-size: 2rem !important;
    }
}

/* ===== SOLUTION D'URGENCE POUR MENU HAMBURGER ===== */
/* Ce code FORCE l'affichage du menu hamburger sur toutes les pages */

@media screen and (max-width: 992px) {
    /* FORCER l'affichage du hamburger */
    button.hamburger,
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        padding: 10px !important;
        z-index: 1001 !important;
        position: relative !important;
    }
    
    .hamburger .bar {
        display: block !important;
        width: 25px !important;
        height: 3px !important;
        margin: 3px 0 !important;
        background-color: #1E73BE !important;
        transition: all 0.3s ease !important;
    }
    
    /* TRANSFORMER LE MENU EN MOBILE */
    .nav-menu {
        position: fixed !important;
        left: -100% !important;
        top: 80px !important;
        width: 100% !important;
        height: calc(100vh - 80px) !important;
        background-color: white !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 40px 20px !important;
        margin: 0 !important;
        transition: left 0.3s ease !important;
        z-index: 999 !important;
        display: flex !important;
        list-style: none !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
        overflow-y: auto !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
    }
    
    .nav-menu li {
        margin: 15px 0 !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .nav-menu a {
        font-size: 1.2rem !important;
        padding: 12px 20px !important;
        display: inline-block !important;
        color: #222 !important;
        text-decoration: none !important;
    }
    
    /* Cacher le bouton donate desktop */
    .desktop-only {
        display: none !important;
    }
    
    /* Afficher le bouton donate mobile */
    .mobile-only {
        display: block !important;
    }
    
    .mobile-only .btn {
        width: 200px !important;
        margin: 10px auto !important;
        display: block !important;
    }

    /* NOUVEAU DESIGN POUR BRSN */
    .slogan {
        font-family: 'Poppins', sans-serif;
        font-size: 1.2rem;
        font-style: italic;
        color: var(--orange);
        text-align: center;
        margin: 1rem 0;
    }

    .rlo-badge {
        display: inline-block;
        background-color: var(--green);
        color: white;
        font-size: 0.7rem;
        padding: 2px 8px;
        border-radius: 20px;
        margin-left: 8px;
        vertical-align: middle;
    }

    .missing-link {
        background-color: var(--light-gray);
        border-left: 4px solid var(--orange);
        padding: 30px;
        margin: 30px 0;
    }

    .missing-link h3 {
        color: var(--orange);
    }

    .founder-card {
        background: linear-gradient(135deg, white 0%, var(--light-gray) 100%);
        border: 1px solid #eee;
    }

    .founder-card h3 {
        color: var(--primary-blue);
    }

    .strategic-section {
        background: linear-gradient(rgba(30,115,190,0.05), rgba(30,115,190,0.02));
        padding: 40px;
        border-radius: 8px;
        margin: 30px 0;
    }
}

/* ===== HOME PAGE - STYLES RESPONSIVES ===== */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../assets/images/hero-bg.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 160px 0 80px;
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-btn {
    margin-top: 1.5rem;
}

.members {
    background-color: var(--light-gray);
}

.members-btn,
.programs-btn,
.stories-btn {
    text-align: center;
    margin-top: 2rem;
}

.testimonials-home-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 2rem;
}

.testimonial-home-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.testimonial-home-text {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1rem;
}

.testimonial-home-author {
    font-weight: 600;
    color: var(--primary-blue);
}

.impact-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

@media screen and (max-width: 992px) {
    .about-grid {
        gap: 40px;
    }
    
    .testimonials-home-grid {
        gap: 25px;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        padding: 120px 0 60px !important;
    }
    
    .hero h1 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-text {
        font-size: 0.95rem !important;
        padding: 0 10px;
    }
    
    .slogan {
        font-size: 0.9rem !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 80%;
        max-width: 250px;
    }
    
    .trust-text {
        font-size: 1rem !important;
    }
    
    .partners {
        gap: 15px !important;
        flex-direction: column;
        align-items: center;
    }
    
    .partner {
        font-size: 0.9rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-content {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .about-content p {
        font-size: 0.95rem;
    }
    
    .members-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .member-card {
        max-width: 100%;
    }
    
    .programs-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    .stat {
        padding: 15px !important;
    }
    
    .stat-number {
        font-size: 2rem !important;
    }
    
    .stat-label {
        font-size: 0.85rem !important;
    }
    
    .testimonials-home-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-home-card {
        padding: 20px;
    }
    
    .testimonial-home-text {
        font-size: 0.9rem;
    }
    
    .cta {
        padding: 50px 0 !important;
    }
    
    .cta h2 {
        font-size: 1.6rem !important;
    }
    
    .cta p {
        font-size: 0.9rem !important;
        padding: 0 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 80%;
        max-width: 250px;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 30px !important;
    }
    
    .footer-section img {
        display: block;
        margin: 0 auto 15px;
    }
    
    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem !important;
    }
    
    .stat-number {
        font-size: 1.5rem !important;
    }
    
    .stat-label {
        font-size: 0.75rem !important;
    }
    
    .btn {
        font-size: 0.9rem !important;
        padding: 10px 20px !important;
    }
    
    .section-title h2 {
        font-size: 1.6rem !important;
    }
    
    .section-title p {
        font-size: 0.9rem !important;
    }
}

/* ===== IMPACT PAGE - STYLES ENRICHIS ===== */
.impact-stats-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    padding: 20px 0;
}

.impact-stat-big {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.impact-stat-big:hover {
    transform: translateY(-5px);
}

.impact-stat-big-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.impact-stat-big-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.impact-stat-big-desc {
    font-size: 0.85rem;
    color: #666;
}

.impact-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 40px 0;
}

.impact-feature-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.impact-feature-content h2 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.impact-feature-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.impact-feature-content ul li {
    margin-bottom: 10px;
}

.programs-impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 2rem 0;
}

.program-impact-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.program-impact-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.program-impact-icon {
    font-size: 2rem;
    background: var(--light-gray);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.program-impact-header h3 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin: 0;
    flex: 1;
}

.program-impact-desc {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.program-impact-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.program-impact-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #f0f0f0;
}

.program-impact-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.program-impact-label {
    font-size: 0.85rem;
    color: #666;
}

.program-impact-quote {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 12px;
    margin-top: auto;
}

.program-impact-quote p {
    font-style: italic;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
}

.program-impact-quote cite {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-blue);
    font-style: normal;
}

.stories-impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 2rem 0;
}

.story-impact-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.story-impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.story-impact-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.story-impact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.story-impact-card:hover .story-impact-image img {
    transform: scale(1.05);
}

.story-impact-content {
    padding: 25px;
}

.story-impact-content h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.story-impact-text {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

.story-impact-meta {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.story-impact-author {
    font-weight: 600;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 12px;
}

.story-impact-stats {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #666;
}

.story-impact-stats span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

@media screen and (max-width: 992px) {
    .programs-impact-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .stories-impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media screen and (max-width: 768px) {
    .programs-impact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .program-impact-card {
        padding: 20px;
    }
    
    .program-impact-header h3 {
        font-size: 1.1rem;
    }
    
    .program-impact-stat {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .stories-impact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .story-impact-image {
        height: 200px;
    }
    
    .story-impact-content {
        padding: 20px;
    }
    
    .story-impact-content h3 {
        font-size: 1.2rem;
    }
    
    .story-impact-text {
        font-size: 0.95rem;
    }
    
    .story-impact-stats {
        flex-direction: column;
        gap: 8px;
    }
}

@media screen and (max-width: 480px) {
    .program-impact-header {
        flex-direction: column;
        text-align: center;
    }
    
    .program-impact-stat {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .story-impact-image {
        height: 180px;
    }
}

.impact-secondary-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.secondary-stat {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 12px;
}

.secondary-stat-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.secondary-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.secondary-stat-label {
    font-weight: 600;
    margin: 10px 0;
}

.secondary-stat-desc {
    font-size: 0.8rem;
    color: #666;
}

@media screen and (max-width: 992px) {
    .impact-stats-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .impact-feature {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .impact-secondary-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .impact-stats-showcase {
        grid-template-columns: 1fr;
    }
    
    .impact-secondary-stats {
        grid-template-columns: 1fr;
    }
}

/* ===== ABOUT PAGE - STYLES RESPONSIVES ===== */
.about-summary {
    max-width: 900px;
    margin: 0 auto;
}

.about-summary p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.challenge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 2rem 0;
}

.challenge-card {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.challenge-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.challenge-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.challenge-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.solution-content {
    max-width: 900px;
    margin: 0 auto;
}

.solution-content > p {
    margin-bottom: 2rem;
    line-height: 1.7;
    text-align: center;
}

.solution-approach {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 20px;
}

.approach-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

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

.approach-number {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.approach-text h3 {
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.approach-text p {
    color: #555;
    line-height: 1.6;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 2rem 0;
}

.mission-card,
.vision-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
}

.mission-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.mission-card h3,
.vision-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.mission-card p,
.vision-card p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 2rem 0;
}

.value-card {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.value-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.value-card h3 {
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.value-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 2rem 0;
}

.founder-card {
    background: white;
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.founder-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 50%;
    overflow: hidden;
}

.founder-logo-img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.founder-card h3 {
    color: var(--primary-blue);
    font-size: 1rem;
    margin-bottom: 8px;
}

.founder-website-link {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 15px;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.founder-website-link:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 2rem 0;
}

.about-stat-card {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

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

.about-stat-label {
    font-size: 0.9rem;
    color: #666;
}

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

.team-card {
    text-align: center;
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-card h3 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.team-card p {
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 10px;
}

.commitment-text {
    max-width: 800px;
    margin: 1.5rem auto;
    line-height: 1.7;
    font-size: 1.05rem;
}

.commitment-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 2rem;
}

@media screen and (max-width: 992px) {
    .challenge-grid {
        gap: 25px;
    }
    
    .values-grid {
        gap: 25px;
    }
    
    .team-grid {
        gap: 30px;
    }
    
    .about-stats-grid {
        gap: 25px;
    }
}

@media screen and (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px !important;
    }
    
    .page-hero h1 {
        font-size: 1.8rem !important;
    }
    
    .page-hero p {
        font-size: 1rem !important;
    }
    
    .about-summary p {
        font-size: 0.95rem;
    }
    
    .challenge-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .challenge-card {
        padding: 25px;
    }
    
    .solution-approach {
        padding: 20px;
    }
    
    .approach-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    
    .approach-number {
        margin: 0 auto;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .mission-card,
    .vision-card {
        padding: 25px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .founders-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-card img {
        width: 120px;
        height: 120px;
    }
    
    .commitment-text {
        font-size: 0.95rem;
        padding: 0 15px;
    }
    
    .commitment-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .commitment-buttons .btn {
        width: 80%;
        max-width: 250px;
    }
}

@media screen and (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .founder-card {
        padding: 20px;
    }
    
    .value-card {
        padding: 20px;
    }
    
    .section-title h2 {
        font-size: 1.5rem !important;
    }
    
    .section-title p {
        font-size: 0.85rem !important;
    }
}

/* ===== MEMBERS PAGE - STYLES RESPONSIVES ===== */
.members-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.members-intro p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.members-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 1.5rem;
}

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

.members-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.members-stat-label {
    font-size: 0.85rem;
    color: #666;
}

.members-enhanced-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 2rem 0;
}

.member-enhanced-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.member-enhanced-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.member-enhanced-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-enhanced-card:hover .member-enhanced-image img {
    transform: scale(1.05);
}

.member-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-blue);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.member-badge.lead {
    background: var(--orange);
}

.member-enhanced-content {
    padding: 25px;
}

.member-enhanced-content h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.member-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #666;
}

.member-focus {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.member-stats {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.member-stat {
    text-align: center;
    flex: 1;
}

.member-stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.member-stat-name {
    font-size: 0.75rem;
    color: #666;
}

.collaboration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 2rem 0;
}

.collaboration-card {
    text-align: center;
    padding: 30px 25px;
    background: var(--light-gray);
    border-radius: 16px;
    transition: transform 0.3s ease;
}

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

.collaboration-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.collaboration-card h3 {
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.collaboration-card p {
    color: #666;
    line-height: 1.6;
}

.collective-impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 2rem 0;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.impact-item-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-item-content h3 {
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.impact-item-content p {
    color: #666;
    font-size: 0.9rem;
}

.member-testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: var(--light-gray);
    border-radius: 24px;
    position: relative;
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--primary-blue);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: serif;
}

.member-testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    margin-top: 15px;
}

.testimonial-author strong {
    color: var(--primary-blue);
    display: block;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: #666;
}

.join-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 2rem;
}

@media screen and (max-width: 992px) {
    .members-enhanced-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .collaboration-grid {
        gap: 25px;
    }
    
    .collective-impact-grid {
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px !important;
    }
    
    .page-hero h1 {
        font-size: 1.8rem !important;
    }
    
    .members-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .members-stat-number {
        font-size: 1.5rem;
    }
    
    .members-enhanced-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .member-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .member-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .member-stat {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .member-stat-value {
        font-size: 1rem;
    }
    
    .collaboration-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .collective-impact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .impact-item {
        padding: 15px;
    }
    
    .member-testimonial {
        padding: 30px 20px;
    }
    
    .member-testimonial p {
        font-size: 1rem;
    }
    
    .testimonial-quote {
        font-size: 3rem;
        top: 10px;
        left: 15px;
    }
    
    .join-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .join-buttons .btn {
        width: 80%;
        max-width: 250px;
    }
}

@media screen and (max-width: 480px) {
    .member-enhanced-content {
        padding: 20px;
    }
    
    .member-enhanced-content h3 {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem !important;
    }
}

/* ===== GET INVOLVED PAGE - STYLES RESPONSIVES ===== */
.involved-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.involved-intro p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.impact-highlight {
    background: var(--light-gray);
    padding: 15px 25px;
    border-radius: 40px;
    display: inline-block;
    margin-top: 1rem;
}

.impact-highlight span {
    font-size: 0.95rem;
}

.impact-highlight strong {
    color: var(--primary-blue);
}

.involved-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 2rem 0;
}

.involved-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.involved-card-image {
    height: 180px;
    overflow: hidden;
}

.involved-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.involved-card:hover .involved-card-image img {
    transform: scale(1.05);
}

.involved-card-content {
    padding: 25px;
    position: relative;
}

.involved-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.involved-card-content h3 {
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.involved-card-content > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.donation-impact ul,
.partner-opportunities ul,
.fundraise-ideas ul,
.membership-benefits ul,
.spread-ways ul {
    margin: 10px 0 20px 20px;
    list-style: none;
}

.donation-impact ul li,
.partner-opportunities ul li,
.fundraise-ideas ul li,
.membership-benefits ul li,
.spread-ways ul li {
    margin-bottom: 8px;
    color: #555;
}

.donation-impact ul li span {
    font-weight: 700;
    color: var(--primary-blue);
}

.volunteer-needs {
    margin: 15px 0;
}

.needs-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.needs-tags span {
    background: var(--light-gray);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #555;
}

.support-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 2rem 0;
}

.support-impact-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

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

.support-impact-content h3 {
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-size: 1rem;
}

.support-impact-content p {
    font-size: 0.85rem;
    color: #666;
}

.volunteer-testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 24px;
    position: relative;
}

.testimonial-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.volunteer-testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.volunteer-testimonial .testimonial-author strong {
    color: var(--primary-blue);
    display: block;
}

.volunteer-testimonial .testimonial-author span {
    font-size: 0.85rem;
    color: #666;
}

.newsletter-input {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.newsletter-note {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: 10px;
}

.quick-donation {
    text-align: center;
    padding: 40px;
    background: var(--light-gray);
    border-radius: 24px;
    margin: 2rem 0;
}

.quick-donation h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.donation-amounts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.donation-amount {
    background: white;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.donation-amount:hover,
.donation-amount.custom {
    background: var(--primary-blue);
    color: white;
}

.donate-btn {
    display: inline-block;
}

@media screen and (max-width: 992px) {
    .involved-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .support-impact-grid {
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px !important;
    }
    
    .page-hero h1 {
        font-size: 1.8rem !important;
    }
    
    .impact-highlight {
        padding: 12px 20px;
    }
    
    .involved-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .involved-card-image {
        height: 160px;
    }
    
    .support-impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .volunteer-testimonial {
        padding: 30px 20px;
    }
    
    .volunteer-testimonial p {
        font-size: 1rem;
    }
    
    .quick-donation {
        padding: 25px;
    }
    
    .donation-amounts {
        gap: 10px;
    }
    
    .donation-amount {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .support-impact-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .support-impact-card {
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
        padding: 15px;
    }
    
    .support-impact-number {
        font-size: 1.5rem;
        margin-bottom: 0;
        min-width: 50px;
    }
    
    .donation-amounts {
        flex-direction: column;
        align-items: center;
    }
    
    .donation-amount {
        width: 100%;
        max-width: 150px;
    }
    
    .newsletter-form form {
        flex-direction: column;
    }
    
    .newsletter-input {
        width: 100%;
    }
    
    .section-title h2 {
        font-size: 1.5rem !important;
    }
}

/* ===== FAQs PAGE STYLES ===== */
.faq-search {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.faq-search-input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-hint {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    margin-top: 10px;
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 2rem 0;
}

.faq-category-btn {
    padding: 8px 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.faq-category-btn.active,
.faq-category-btn:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-icon {
    font-size: 1.2rem;
}

.faq-question h3 {
    flex: 1;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px 20px;
    border-top-color: #eee;
}

.faq-answer p {
    margin: 15px 0;
    line-height: 1.6;
    color: #555;
}

.still-have-questions {
    text-align: center;
    padding: 40px;
    background: var(--light-gray);
    border-radius: 24px;
    margin: 2rem 0;
}

.still-have-questions h2 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.still-have-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 25px;
}

/* ===== GALLERY PAGE STYLES ===== */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 2rem 0;
}

.gallery-filter-btn {
    padding: 8px 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 0.9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h4 {
    color: white;
    margin-bottom: 5px;
    font-size: 1rem;
}

.gallery-info p {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.gallery-date {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 2rem 0;
}

.video-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.video-thumbnail {
    position: relative;
    cursor: pointer;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    background: var(--orange);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 15px;
}

.video-info h4 {
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-size: 1rem;
}

.video-info p {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.video-duration {
    font-size: 0.75rem;
    color: #999;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-image {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 20px;
    padding: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.4);
}

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .faq-categories {
        gap: 8px;
    }
    
    .faq-category-btn {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    
    .still-have-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 1.5rem;
        padding: 10px 15px;
    }
}

@media screen and (max-width: 480px) {
    .faq-question {
        gap: 10px;
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CHATBOT WIDGET ===== */
.chatbot-widget {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 350px;
    max-width: calc(100vw - 40px);
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
    flex-direction: column;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
}

.chatbot-widget.active {
    display: flex;
}

.chatbot-header {
    background: #1E73BE;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chatbot-icon {
    font-size: 24px;
}

.chatbot-header-info h4 {
    margin: 0;
    font-size: 1rem;
}

.chatbot-header-info p {
    margin: 0;
    font-size: 0.75rem;
    opacity: 0.9;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.chatbot-messages {
    height: 350px;
    overflow-y: auto;
    padding: 15px;
    background: #f5f7fa;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chatbot-message {
    display: flex;
    width: 100%;
}

.chatbot-message.user {
    justify-content: flex-end;
}

.chatbot-message.bot {
    justify-content: flex-start;
}

.message-bubble {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 0.85rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.chatbot-message.user .message-bubble {
    background: #1E73BE;
    color: white;
    border-bottom-right-radius: 4px;
}

.chatbot-message.bot .message-bubble {
    background: white;
    color: #333;
    border: 1px solid #e0e0e0;
    border-bottom-left-radius: 4px;
}

.chatbot-input-area {
    display: flex;
    padding: 12px;
    border-top: 1px solid #e0e0e0;
    background: white;
    gap: 8px;
}

.chatbot-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 24px;
    font-size: 0.85rem;
    outline: none;
}

.chatbot-input:focus {
    border-color: #1E73BE;
}

.chatbot-send {
    background: #1E73BE;
    color: white;
    border: none;
    padding: 0 16px;
    border-radius: 24px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.chatbot-send:hover {
    background: #155a8c;
}

.chatbot-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #1E73BE;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-weight: 600;
    transition: background 0.3s;
}

.chatbot-toggle:hover {
    background: #155a8c;
}

.chatbot-toggle-icon {
    font-size: 20px;
}

@media (max-width: 480px) {
    .chatbot-widget {
        width: calc(100vw - 40px);
        right: 20px;
        bottom: 70px;
    }
    
    .message-bubble {
        max-width: 90%;
        font-size: 0.8rem;
    }
    
    .chatbot-messages {
        height: 300px;
    }
    
    .chatbot-toggle-text {
        display: none;
    }
    
    .chatbot-toggle {
        padding: 12px;
        border-radius: 50%;
    }
    
    .chatbot-toggle-icon {
        margin: 0;
    }
}

/* ===== DONATION PAGE STYLES ===== */
.donation-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 2rem 0;
}

.donation-impact-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.donation-impact-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.donation-impact-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.donation-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin: 2rem 0;
}

.donation-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
}

.donation-tab {
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.donation-tab.active {
    background: var(--primary-blue);
    color: white;
}

.donation-form {
    display: none;
}

.donation-form.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.donation-form h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

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

.amount-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
}

.amount-btn {
    background: var(--light-gray);
    border: 2px solid #e0e0e0;
    padding: 10px 20px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.amount-btn:hover,
.amount-btn.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.amount-btn.custom {
    background: white;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.custom-amount {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 10px;
}

.bank-details {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 20px;
}

.bank-info-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.bank-info-card p {
    margin: 8px 0;
}

.bank-instructions {
    margin: 20px 0;
    padding: 15px;
    background: white;
    border-radius: 12px;
}

.bank-instructions ol {
    margin-left: 20px;
    margin-top: 10px;
}

.bank-instructions li {
    margin: 8px 0;
}

.bank-notification {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.bank-notification h4 {
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.tax-info {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    margin: 2rem 0;
}

.tax-info h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.tax-info a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.secure-note {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    margin-top: 15px;
}

.donate-submit {
    width: 100%;
    margin-top: 20px;
}

@media screen and (max-width: 992px) {
    .donation-impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .donation-impact-grid {
        grid-template-columns: 1fr;
    }
    
    .donation-container {
        padding: 20px;
    }
    
    .donation-tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    .donation-tab {
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .amount-buttons {
        justify-content: center;
    }
    
    .amount-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

.accepted-cards {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.card-icon {
    height: 30px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.card-icon:hover {
    transform: scale(1.05);
}

@media screen and (max-width: 480px) {
    .accepted-cards {
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .card-icon {
        height: 25px;
    }
}

/* ===== NEWS PAGE STYLES ===== */
.news-card:hover {
    transform: translateY(-5px);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.read-more:hover {
    text-decoration: underline !important;
}

.event-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* ===== IMPACT PAGE ADDITIONS ===== */
.stat-circle .circle svg circle:last-child {
    transition: stroke-dashoffset 0.5s ease;
}

.community-support-stats .community-content ul li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.contribution-card {
    transition: transform 0.3s ease, background 0.3s ease;
}

.contribution-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.25) !important;
}

@media screen and (max-width: 768px) {
    .community-support-stats {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .stat-circle .circle {
        width: 120px !important;
        height: 120px !important;
    }
    
    .contribution-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .contribution-card {
        text-align: center;
    }
}

.contribution-section {
    animation: fadeInUp 0.6s ease;
}

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

.btn-member-website {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-member-website:hover {
    background: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@media screen and (max-width: 768px) {
    .btn-member-website {
        display: block;
        text-align: center;
        width: 100%;
        padding: 10px;
    }
}

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    cursor: default;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 35px;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.video-modal-close:hover {
    color: #e63946;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background-color: #000;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(230, 57, 70, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-thumbnail:hover .video-play-btn {
    background-color: #e63946;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 15px;
    background-color: white;
    border-radius: 0 0 10px 10px;
}

.video-info h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.video-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.video-duration {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.75rem;
    color: #e63946;
    font-weight: 600;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .video-play-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-modal-close {
        top: -35px;
        font-size: 28px;
    }
}

/* ===== CORRECTIONS FINALES POUR MOBILE (DÉBORDEMENT + HAMBURGER) ===== */
body {
    overflow-x: hidden !important;
    width: 100%;
}

.container,
.container-fluid,
section,
.footer-content,
.donation-container,
.gallery-grid,
.videos-grid,
.programs-impact-grid,
.stories-impact-grid,
.members-enhanced-grid {
    max-width: 100vw !important;
    overflow-x: hidden !important;
}

/* Rendre le hamburger plus visible */
.hamburger {
    background-color: #1E73BE !important;
    border-radius: 8px !important;
    padding: 8px 10px !important;
    z-index: 1002 !important;
}

.hamburger .bar {
    background-color: white !important;
    width: 22px !important;
    height: 3px !important;
    margin: 4px 0 !important;
}

/* Ajustement des grilles sur mobile */
@media screen and (max-width: 768px) {
    .donation-impact-grid,
    .programs-impact-grid,
    .stories-impact-grid,
    .members-enhanced-grid,
    .gallery-grid,
    .videos-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    .bank-info-card,
    .bank-instructions,
    .bank-notification {
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    section {
        padding: 40px 0 !important;
    }
    
    .btn {
        white-space: normal !important;
        max-width: 90% !important;
    }
    
    .nav-menu {
        top: 70px !important;
        height: calc(100vh - 70px) !important;
    }
}

/* ===== CORRECTION URGENTE : HAMBURGER VISIBLE SUR MOBILE ===== */
@media screen and (max-width: 992px) {
    /* Forcer le conteneur de la navbar à bien répartir l'espace */
    .navbar .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        position: relative !important;
    }
    
    /* Le logo doit prendre moins de place pour laisser le hamburger visible */
    .logo {
        flex: 0 0 auto !important;
        max-width: 70% !important;
    }
    
    .logo-img {
        height: 40px !important;
        width: auto !important;
    }
    
    /* Si le texte du logo est trop long, le cacher sur mobile */
    .logo-info {
        display: none !important;
    }
    
    /* Hamburger bien visible à droite */
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        background-color: #1E73BE !important;
        border-radius: 8px !important;
        padding: 8px 10px !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        order: 2 !important;
        z-index: 1002 !important;
        position: relative !important;
    }
    
    .hamburger .bar {
        background-color: rgb(0, 0, 0) !important;
        width: 22px !important;
        height: 3px !important;
        margin: 4px 0 !important;
        display: block !important;
    }
    
    /* Cacher le bouton Support Us desktop */
    .desktop-only {
        display: none !important;
    }
    
    /* S'assurer que le menu mobile ne soit pas affiché par défaut */
    .nav-menu {
        left: -100% !important;
        transition: left 0.3s ease !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
    }
}

/* ===== CORRECTION MENU MOBILE (trop grand, options coupées) ===== */
@media screen and (max-width: 992px) {
    /* Le menu prend toute la hauteur et défile si nécessaire */
    .nav-menu {
        position: fixed !important;
        left: -100% !important;
        top: 80px !important;
        width: 100% !important;
        height: calc(100vh - 80px) !important; /* Hauteur totale moins la navbar */
        background-color: white !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important; /* Commence en haut, pas centré */
        padding: 20px !important; /* Réduit le padding vertical */
        margin: 0 !important;
        transition: left 0.3s ease !important;
        z-index: 999 !important;
        display: flex !important;
        list-style: none !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
        overflow-y: auto !important; /* Permet de scroller si trop d'options */
        gap: 5px !important; /* Réduit l'espace entre les liens */
    }
    
    /* Liens du menu mobile */
    .nav-menu li {
        margin: 8px 0 !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .nav-menu a {
        font-size: 1rem !important; /* Réduit la taille des polices */
        padding: 10px 15px !important;
        display: inline-block !important;
        white-space: nowrap !important; /* Empêche le retour à la ligne inutile */
    }
    
    /* Pour les très petits écrans, réduire encore plus */
    @media screen and (max-height: 600px) {
        .nav-menu a {
            font-size: 0.9rem !important;
            padding: 6px 12px !important;
        }
        .nav-menu li {
            margin: 4px 0 !important;
        }
        .nav-menu {
            padding: 10px !important;
        }
    }
}