/* =========================
   DONORS & SUPPORTERS
========================= */
.donors-section {
    width: 100%;
    padding: 90px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
    display: flex;
    justify-content: center;
}

.donors-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

/* Left Content */
.donors-content h2 {
    font-size: 44px;
    font-weight: 700;
    color: #192850;
    margin-bottom: 20px;
}

.donors-description {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    max-width: 600px;
    margin-bottom: 35px;
}

/* Funding Areas */
.funding-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.funding-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #ffffff;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: #192850;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.funding-pill img {
    width: 26px;
    height: 26px;
}

/* Right CTA */
.donors-cta {
    display: flex;
    justify-content: center;
}

.cta-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 30px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.cta-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .donors-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .donors-description {
        margin: 0 auto 30px;
    }

    .funding-areas {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .donors-section {
        padding: 70px 15px;
    }

    .donors-content h2 {
        font-size: 32px;
    }

    .donors-description {
        font-size: 15px;
    }

    .funding-pill {
        font-size: 14px;
        padding: 10px 15px;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .cta-box p {
        font-size: 14px;
    }
}

@media (max-width: 380px) {
    .funding-areas {
        flex-direction: column;
        align-items: center;
    }

    .funding-pill {
        width: 100%;
        justify-content: center;
    }
}
