/* Global */
body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
    background: #f5f5f5;
}

/* Colors */
:root {
    --primary-red: #E63946;
    --black: #1a1a1a;
    --white: #fff;
    --gray-light: #f9f9f9;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5rem;
    background: transparent;
    color: var(--white);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.432);
    backdrop-filter: blur(12px);
    color: var(--black);
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    list-style: none;
}

.nav-links a {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary-red);
}

.hamburger {
    display: none;
}

.navbar-mobile {
    display: none;
}

.mobile-menu {
    display: none;
}

@media (max-width:768px) {

    /* hide desktop nav */

    .navbar {
        display: none;
    }

    /* MOBILE NAVBAR */

    .navbar-mobile {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.9rem 1.2rem;
        z-index: 3000;
        transition: 0.3s;
    }

    /* glass scroll effect */

    .navbar-mobile.scrolled {
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(12px);
        color: var(--black);
    }

    /* LOGO */

    .logo img {
        height: 38px;
    }

    /* HAMBURGER */

    .hamburger {
        width: 26px;
        height: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        height: 2px;
        background: white;
        transition: 0.35s;
    }

    .navbar-mobile.scrolled .hamburger span {
        display: block;
        height: 2px;
        background: var(--black);
        transition: 0.35s;
    }

    /* hamburger -> X */

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }


    /* OVERLAY */

    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.45);
        opacity: 0;
        pointer-events: none;
        transition: 0.3s;
        z-index: 2000;
    }


    /* PANEL */

    .mobile-panel {
        position: absolute;
        top: 0;
        left: -280px;
        width: 260px;
        height: 100vh;
        background: white;
        padding-top: 90px;
        transition: 0.4s cubic-bezier(.77, 0, .18, 1);
    }


    /* LINKS */

    .nav-links-mobile {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .nav-links-mobile li {
        opacity: 0;
        transform: translateX(-15px);
        transition: 0.3s;
    }

    .nav-links-mobile a {
        display: block;
        padding: 1rem 1.6rem;
        font-size: 1.1rem;
        text-decoration: none;
        color: #222;
    }


    /* OPEN MENU */

    .mobile-menu.active {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu.active .mobile-panel {
        left: 0;
    }

    /* stagger animation */

    .mobile-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .mobile-menu.active li:nth-child(1) {
        transition-delay: .1s;
    }

    .mobile-menu.active li:nth-child(2) {
        transition-delay: .15s;
    }

    .mobile-menu.active li:nth-child(3) {
        transition-delay: .2s;
    }

    .mobile-menu.active li:nth-child(4) {
        transition-delay: .25s;
    }

    .mobile-menu.active li:nth-child(5) {
        transition-delay: .3s;
    }

    #about {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        padding: 4rem 6rem;
        background: var(--gray-light);
        line-height: 1.6;
    }

}

/* Hero Section */
#hero {
    position: relative;
    width: 100%;
    height: 93vh;
    overflow: hidden;
}

.hero-container {
    display: flex;
    width: 100%;
    transition: transform 1s ease-in-out;
}

.hero-slide {
    width: 100%;
    flex-shrink: 0;
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.644);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 7%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 700px;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero-text h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.donate-btn {
    background: var(--primary-red);
    border: none;
    padding: 0.75rem 1.5rem;
    color: var(--white);
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.3s;
}

.donate-btn:hover {
    transform: scale(1.05);
}

/* About Section */
#about {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 4rem 6rem;
    background: var(--gray-light);
    line-height: 1.6;
    gap: 4em;
}

#about h2 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

#about h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

#about p {
    margin-bottom: 1rem;
}

.mission-logo {
    flex-shrink: 0;
    width: 300px;
    height: auto;
}

/* Domain Section */
#domain {
    padding: 4rem 1rem;
    text-align: center;
    background: #f9f9f9;
}

.domain-intro {
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.domain-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card i {
    font-size: 2rem;
    color: var(--primary-red);
}

.card h3 {
    margin-top: 1rem;
    font-size: 1.2rem;
}

.card p {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #333;
}

/* Articles Section */
#articles {
    padding: 0rem 7rem;
    background: var(--gray-light);
    margin: 0 auto;
}

#articles h2 {
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 2rem;
}

.articles-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.article-card {
    position: relative;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.article-card img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.article-info {
    padding: 1rem;
}

.article-info h3 {
    margin: 0.5rem 0;
}

.article-info p {
    font-size: 0.95rem;
    color: #555;
}

.article-info .date {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(230, 57, 71, 0.5);
    border: 1px solid var(--primary-red);
    color: #fff;
    border-radius: 8px;
    padding: 0.3rem;
    font-weight: 600;
}

.see-more-btn {
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-red);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.see-more-btn:hover {
    transform: scale(1.05);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    #articles {
        padding: 4rem 3rem;
    }
}

@media (max-width: 768px) {
    #articles {
        padding: 3rem 1.5rem;
    }

    .articles-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .article-card img {
        height: 200px;
    }

    .article-info p {
        font-size: 0.9rem;
    }

    .article-info .date {
        padding: 0.2rem 0.4rem;
        font-size: 0.75rem;
    }

    .see-more-btn {
        width: 30%;
        text-align: center;
    }
}

/* ============================= */
/* PDF SECTION */
/* ============================= */

.pdf-section {
    padding: 20px 8%;
    padding-bottom: 80px;
    background: var(--gray-light);
    font-family: system-ui, -apple-system, sans-serif;
}

.pdf-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: center;
}

/* ============================= */
/* LEFT TEXT SIDE */
/* ============================= */

.pdf-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.pdf-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #111;
}

.pdf-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 520px;
}


/* DOWNLOAD BUTTON */

.download-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 24px;
    background: var(--primary-red);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    outline: none;
    border: none;
}

.see-m-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 24px;
    background: var(--primary-red);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    outline: none;
    border: none;
    font-size: 15px;
    cursor: pointer;
}

.download-btn:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
}

/* ============================= */
/* RIGHT SIDE PREVIEW */
/* ============================= */

.pdf-preview {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
}

/* ============================= */
/* HALF PAGE PDF PREVIEW */
/* ============================= */

.pdf-frame {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 12px 12px 0px 0px;
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* IFRAME */

.pdf-frame iframe {
    width: 100%;
    height: 520px;
    border: none;
    /* disable interaction */
    pointer-events: none;

}


/* ============================= */
/* PDF CARD */
/* ============================= */

.pdf-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    background: white;
    border-radius: 0px 0px 12px 12px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all .35s ease;
}

.pdf-preview:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transition: .3s ease-in-out all;
}


/* PDF ICON */

.pdf-icon {
    font-size: 42px;
    color: #ef4444;
}


/* FILE INFO */

.pdf-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #111;
}

.pdf-info span {
    font-size: 0.9rem;
    color: #777;
}


/* DOWNLOAD ICON */

.pdf-action {
    margin-left: auto;
    font-size: 22px;
    color: #333;
}


/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width:768px) {
    .pdf-section {
        padding: 80px 6%;
    }

    .pdf-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pdf-frame {
        height: 140px;
    }
}

/* ============================ */
/* GALLERY SECTION */
/* ============================ */

#gallery {
    padding: 10px 8%;
    padding-bottom: 50px;
    background: #f8fafc;
    text-align: center;
}

#gallery h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    color: #111;
}

/* ============================ */
/* MASONRY GRID */
/* ============================ */

.gallery-grid {
    column-count: 3;
    column-gap: 20px;
}


/* IMAGES */
.gallery-grid img {
    width: 100%;
    height: 350px;
    margin-bottom: 20px;
    border-radius: 10px;
    display: block;
    break-inside: avoid;
    transition: 0.35s;
    object-fit: cover;
}


/* HOVER */
.gallery-grid img:hover {
    transform: scale(1.02);
}


/* ============================ */
/* TABLET */
/* ============================ */

@media (max-width:1000px) {
    .gallery-grid {
        column-count: 2;
    }
}


/* ============================ */
/* MOBILE */
/* ============================ */

@media (max-width:600px) {
    .gallery-grid {
        column-count: 1;
    }
}

/* ========================= */
/* IMAGE PREVIEW LIGHTBOX */
/* ========================= */

.image-preview {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 5000;
}


/* ACTIVE STATE */
.image-preview.active {
    opacity: 1;
    pointer-events: auto;
}


/* PREVIEW IMAGE */
.image-preview img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn .3s ease;
}


/* CLOSE BUTTON */
.close-preview {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.close-preview:hover {
    transform: scale(1.2);
}

/* ZOOM ANIMATION */
@keyframes zoomIn {
    from {
        transform: scale(.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media(max-width: 1024px) {
    #mission {
        flex-direction: column-reverse;
        text-align: center;
    }

    .mission-logo {
        margin-bottom: 1.5rem;
    }
}

@media(max-width:768px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .nav-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .activity-card {
        flex-direction: column;
        align-items: center;
    }

    .activity-card img {
        width: 90%;
    }

    .articles-container {
        grid-template-columns: 1fr;
    }

    #about,
    #mission,
    #activities {
        padding: 3rem 1.5rem;
    }
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer {
    background: #0f172a;
    color: #cbd5f5;
    padding: 70px 8% 30px;
    font-family: system-ui, -apple-system, sans-serif;
}


/* ========================= */
/* FOOTER GRID */
/* ========================= */

.footer-container {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


/* ========================= */
/* BRAND */
/* ========================= */

.footer-brand h3 {
    color: white;
    font-size: 1.7rem;
    margin-bottom: 6px;
}

.brand-sub {
    display: block;
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 10px;
}

.footer-brand p {
    max-width: 300px;
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
}


/* ========================= */
/* SOCIAL LINKS */
/* ========================= */

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e293b;
    border-radius: 10px;
    color: white;
    font-size: 18px;
    transition: all .3s ease;
    text-decoration: none;
}

/* hover effect */
.footer-social a:hover {
    background: #2563eb;
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}


/* ========================= */
/* CREATOR */
/* ========================= */

.footer-creator {
    text-align: right;
}

.footer-creator p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 8px;
}

.footer-creator a {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
}

.footer-creator a:hover {
    text-decoration: underline;
}


/* ========================= */
/* PROMOTED TAG */
/* ========================= */

.promoted {
    display: inline-block;
    font-size: 12px;
    padding: 4px 12px;
    background: #2563eb;
    color: white;
    border-radius: 20px;
    letter-spacing: .5px;
}


/* ========================= */
/* FOOTER BOTTOM */
/* ========================= */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #94a3b8;
}

.footer-bottom a {
    color: #60a5fa;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}


/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width:900px) {

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-brand p {
        margin: auto;
    }

    .footer-creator {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-social {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 14px;
    }

}

#faq {
    font-family: 'Arial', sans-serif;
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 15px 0;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    color: #34495E;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary-red);
}

.icon-left {
    font-size: 1.4rem;
    margin-right: 10px;
}

.icon-right {
    font-size: 1.3rem;
    transition: transform 0.3s;
}

.faq-answer {
    display: none;
    padding: 10px 0 20px 35px;
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

/* Contact Section */
#contacts {
    font-family: 'Arial', sans-serif;
    max-width: 1100px;
    margin: auto;
    padding: 50px 20px;
}

#contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2C3E50;
}

/* Container */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* Contact Info */
.contact-info {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-red);
    flex-shrink: 0;
}

.contact-item h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #2C3E50;
}

.contact-item p {
    margin: 5px 0 0;
    font-size: 1rem;
    color: #555;
}

/* Google Map */
.contact-map {
    flex: 2 1 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }
}


/* Article Section */
#article {
    font-family: 'Arial', sans-serif;
    max-width: 900px;
    margin: auto;
    padding: 50px 20px;
}

.article-title {
    font-size: 2rem;
    color: #2C3E50;
    margin-bottom: 10px;
}

.article-meta {
    font-size: 0.95rem;
    color: #777;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.article-meta i {
    margin-right: 5px;
    color: var(--primary-red);
}

.article-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
}

.article-content {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.article-content h2 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2C3E50;
}

.article-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.article-content ul li {
    margin-bottom: 10px;
}

.article-tags {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.article-tags span {
    background-color: #e0f7f1;
    color: var(--primary-red);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Responsive */
@media (max-width: 600px) {
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
}


#donation {
    padding: 70px 20px;
    background: #f9fbfc;
    font-family: Arial, sans-serif;
}

.donation-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.donation-content h2 {
    font-size: 2.4rem;
    color: #2C3E50;
    margin-bottom: 20px;
}

.donation-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
}

.donation-impact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.impact-item {
    background: white;
    padding: 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
}

.impact-item i {
    color: var(--primary-red);
    font-size: 1.4rem;
}

.donation-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.donate-btn {
    background: var(--primary-red);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.donate-btn:hover {
    background: var(--primary-red);
}

.volunteer-btn {
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.volunteer-btn:hover {
    background: var(--primary-red);
    color: white;
}

.donation-contact {
    font-size: 0.95rem;
    color: #666;
    margin-top: 10px;
}