
body{
    background:#f5f8fc;
}

/* ================= DONATION PAGE ================= */

.donate-section{
    padding:70px 0;
}

.page-title{
    text-align:center;
    margin-bottom:40px;
}

.page-title h1{
    font-size:42px;
    color:#0b5ed7;
    font-weight:700;
}

.page-title p{
    color:#666;
    font-size:18px;
}

/* ================= LAYOUT ================= */

.donate-wrapper{
    display:grid;
    grid-template-columns:1fr 500px;
    gap:40px;
    align-items:center;
}

@media(max-width:991px){

    .donate-wrapper{
        grid-template-columns:1fr;
    }

}

/* ================= LEFT INFORMATION ================= */

.donate-info{
    background:#ffffff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.donate-info h2{
    color:#0b5ed7;
    margin-bottom:20px;
}

.donate-info p{
    color:#666;
    line-height:1.8;
}

.donate-list{
    margin-top:25px;
}

.donate-list div{
    margin-bottom:15px;
    font-size:17px;
}

/* ================= TRUST STATISTICS ================= */

.trust{
    display:flex;
    justify-content:space-between;
    margin-top:25px;
    text-align:center;
    gap:10px;
}

.trust div{
    flex:1;
    padding:15px 8px;
    background:#f5f8fc;
    border-radius:12px;
}

.trust h4{
    color:#0b5ed7;
    margin:0 0 8px;
    font-size:24px;
}

/* ================= DONATION CARD ================= */

.donate-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.donate-card h3{
    text-align:center;
    margin-bottom:25px;
    color:#0b5ed7;
}

/* ================= FORM ================= */

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

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

.required{
    color:red;
}

.form-control{
    width:100%;
    padding:14px;
    border:1px solid #dcdcdc;
    border-radius:10px;
    font-size:16px;
    transition:.3s;
    background:#fff;
    box-sizing:border-box;
}

.form-control:focus{
    border-color:#0b5ed7;
    outline:none;
    box-shadow:0 0 8px rgba(13,110,253,.25);
}

.mobile-wrapper{
    display:flex;
    gap:10px;
}

.country-code{
    width:135px;
    flex-shrink:0;
}

.mobile-help{
    display:block;
    margin-top:7px;
    color:#777;
}

/* ================= AMOUNT BUTTONS ================= */

.amount-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;
    margin-bottom:18px;
}

.amount-btn{
    padding:12px 5px;
    border:2px solid #0b5ed7;
    border-radius:10px;
    background:#fff;
    color:#0b5ed7;
    cursor:pointer;
    font-weight:bold;
    transition:.3s;
}

.amount-btn:hover,
.amount-btn.active{
    background:#0b5ed7;
    color:#fff;
}

/* ================= DONATE BUTTON ================= */

.donate-btn{
    width:100%;
    padding:16px;
    background:#0b5ed7;
    color:#fff;
    border:none;
    border-radius:10px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.donate-btn:hover{
    background:#084298;
}

.donate-btn:disabled{
    background:#9ba5b1;
    cursor:not-allowed;
    opacity:.75;
}

/* ================= SECURITY ================= */

.security{
    margin-top:25px;
    text-align:center;
    font-size:14px;
    color:#666;
    line-height:1.8;
}
.mobile-wrapper{
    display:flex;
    gap:10px;
    width:100%;
}

.mobile-wrapper .country-code{
    width:110px;
    min-width:110px;
    flex:0 0 110px;
}

.mobile-wrapper input[name="mobile"]{
    flex:1;
    width:100%;
    min-width:0;
}
@media(max-width:480px){

    .mobile-wrapper .country-code{
        width:95px;
        min-width:95px;
        flex-basis:95px;
    }

}
/* ================= RESPONSIVE ================= */

@media(max-width:600px){

    .donate-section{
        padding:45px 0;
    }

    .page-title h1{
        font-size:32px;
    }

    .donate-info,
    .donate-card{
        padding:25px 20px;
    }

    .amount-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .mobile-wrapper{
        flex-direction:column;
    }

    .country-code{
        width:100%;
    }

    .trust{
        flex-direction:column;
    }

}
