.donation-boxes {
    padding: 90px 0;
    background: #f6f9fc;
    font-family: "Poppins", sans-serif;
}

.donation-header {
    max-width: 720px;
    margin: 0 auto 60px;
    text-align: center;
}

.donation-header h1 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.donation-header p {
    color: #64748b;
    font-size: 1.05rem;
}

/* STEPS */
.donation-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.step {
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.step i {
    font-size: 2rem;
    color: #1f8a70;
    margin-bottom: 15px;
}

/* LOCATIONS */
.locations h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.location-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.location-card i {
    font-size: 1.8rem;
    color: #1f8a70;
    margin-bottom: 12px;
}

.location-card span {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #64748b;
}

.locations-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.95rem;
}

.locations-note a {
    color: #1f8a70;
    text-decoration: none;
    font-weight: 500;
}
.location-address {
    display: inline-block;
    margin-top: 8px;
    color: #1f8a70;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.4;
}

.location-address span {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 4px;
}

.location-address:hover {
    text-decoration: underline;
}

.opening-hours {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #64748b;
}


/* RESPONSIVE */
@media (max-width: 900px) {
    .donation-steps,
    .location-grid {
        grid-template-columns: 1fr;
    }
}
