.donation-section{
    padding:120px 20px 80px;
    max-width:1400px;
    margin:auto;
}

.donation-header{
    text-align:center;
    margin-bottom:50px;
}

.donation-header h1{
    font-family:'Playfair Display', serif;
    font-size:3rem;
    color:#17372f;
    margin-bottom:20px;
}

.donation-header p{
    max-width:900px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:1.05rem;
}

/* ====================================
   DONATION LAYOUT
==================================== */

.donation-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:30px;
    margin-bottom:40px;
    align-items:stretch;
}

.donation-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    display:flex;
    flex-direction:column;
    transition:.3s ease;
}

.donation-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.donation-card h2{
    font-family:'Playfair Display', serif;
    margin-bottom:18px;
    font-size:2.3rem;
}

.donation-card p{
    color:#555;
    line-height:1.9;
    margin-bottom:25px;
    flex-grow:1;
}

.donation-card label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.donation-card input{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
    margin-bottom:18px;
    font-size:15px;
}

.donation-card input:focus{
    outline:none;
    border-color:#17372f;
}

.donation-btn{
    display:block;
    width:100%;
    text-align:center;
    text-decoration:none;
    color:#fff;
    border:none;
    border-radius:10px;
    padding:15px;
    font-weight:700;
    cursor:pointer;
    margin-top:auto;
    transition:.3s ease;
}

.donation-btn:hover{
    transform:translateY(-2px);
}

/* ====================================
   MPESA
==================================== */

.mpesa-card{
    border-top:5px solid #43B02A;
}

.mpesa-card h2{
    color:#43B02A;
}

.mpesa-btn{
    background:#43B02A;
}

.mpesa-btn:hover{
    background:#379123;
}

/* ====================================
   PAYPAL
==================================== */

.paypal-card{
    border-top:5px solid #0070BA;
}

.paypal-card h2{
    color:#0070BA;
}

.paypal-btn{
    background:#0070BA;
}

.paypal-btn:hover{
    background:#005ea6;
}

/* ====================================
   FLUTTERWAVE
==================================== */

.flutter-card{
    border-top:5px solid #F5A623;
}

.flutter-card h2{
    color:#F5A623;
}

.flutter-btn{
    background:#F5A623;
}

.flutter-btn:hover{
    background:#df920f;
}

/* ====================================
   PESAPAL
==================================== */

.pesapal-card{
    border-top:5px solid #1D5CC8;
}

.pesapal-card h2{
    color:#1D5CC8;
}

.pesapal-btn{
    background:#1D5CC8;
}

.pesapal-btn:hover{
    background:#164ca8;
}

/* ====================================
   IMPACT SECTION
==================================== */

.impact-section{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:20px;
}

.impact-box{
    background:#f7f5ef;
    border-radius:15px;
    padding:25px;
    text-align:center;
    min-height:220px;
    box-shadow:0 4px 15px rgba(0,0,0,.05);
}

.impact-box i{
    font-size:32px;
    color:#17372f;
    margin-bottom:15px;
}

.impact-box h3{
    color:#17372f;
    margin-bottom:12px;
    font-family:'Playfair Display', serif;
    font-size:1.6rem;
}

.impact-box p{
    color:#555;
    line-height:1.8;
}

/* ====================================
   LAPTOPS
==================================== */

@media(max-width:1400px){

    .donation-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .impact-section{
        grid-template-columns:repeat(2,1fr);
    }
}

/* ====================================
   TABLETS
==================================== */

@media(max-width:992px){

    .donation-header h1{
        font-size:2.4rem;
    }

    .donation-grid{
        grid-template-columns:1fr;
    }

    .impact-section{
        grid-template-columns:repeat(2,1fr);
    }
}

/* ====================================
   MOBILE
==================================== */

@media(max-width:768px){

    .donation-section{
        padding:100px 15px 60px;
    }

    .donation-header h1{
        font-size:2rem;
    }

    .donation-header p{
        font-size:1rem;
    }

    .impact-section{
        grid-template-columns:1fr;
    }

    .donation-card{
        padding:25px;
    }

    .donation-card h2{
        font-size:2rem;
    }
}