*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Anek Telugu',sans-serif;
    background:#F4F7FC;
    color:#1A1A1A;

}

.container{

    width:90%;
    max-width:1100px;
    margin:auto;
    padding:80px 0;

}

.hero{

    text-align:center;
    margin-bottom:60px;

}

.hero h1{

    font-size:52px;
    color:#1E1B5A;
    margin-bottom:20px;

}

.hero p{

    max-width:720px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
    color:#666;

}

.donation-card{

    background:#fff;
    border-radius:24px;
    padding:50px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.donation-card h2{

    margin-bottom:30px;
    color:#1E1B5A;

}

.amount-grid{

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:15px;
    margin-bottom:35px;

}

.amount-btn{

    padding:18px;
    border:none;
    border-radius:14px;
    background:#EEF2FF;
    cursor:pointer;
    font-size:18px;
    font-weight:700;
    transition:.3s;

}

.amount-btn:hover{

    background:#1E4ED8;
    color:white;

}

.custom-amount label{

    display:block;
    margin-bottom:10px;
    font-weight:600;

}

.custom-amount input{

    width:100%;
    padding:18px;
    border-radius:12px;
    border:1px solid #ddd;
    font-size:18px;

}

@media(max-width:768px){

.amount-grid{

grid-template-columns:repeat(2,1fr);

}

.hero h1{

font-size:38px;

}

.donation-card{

padding:30px;

}

}
.subtitle{

margin-bottom:35px;
color:#666;
font-size:18px;

}

.donor-info{

display:grid;
gap:18px;
margin-top:30px;

}

.donor-info input{

padding:18px;
border-radius:12px;
border:1px solid #ddd;
font-size:17px;

}

.amount-btn.active{

background:#0E8A3A;
color:white;
transform:scale(1.05);

}

.donate-btn{

margin-top:35px;
width:100%;
padding:20px;
border:none;
border-radius:14px;
background:#0E8A3A;
color:white;
font-size:20px;
font-weight:700;
cursor:pointer;
transition:.3s;

}

.donate-btn:hover{

transform:translateY(-2px);
box-shadow:0 12px 25px rgba(14,138,58,.25);

}