  <style>
    /* your existing CSS */

    /* 🔽 PASTE HERE (at the end) */
    /* PREMIUM LOOK */
    h2 {
        font-size: 28px;
        margin-bottom: 15px;
        position: relative;
    }

    h2::after {
        content: "";
        width: 60px;
        height: 3px;
        background: #2e7d32;
        display: block;
        margin-top: 8px;
    }

    .card {
        transition: 0.3s;
    }
    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .hero h1 {
        font-size: 40px;
        font-weight: 600;
    }

    .hero p {
        font-size: 18px;
    }

    .btn {
        font-weight: 600;
        letter-spacing: 0.5px;
    }

/* SUCCESS STORIES */
.card img {
    height: 180px;
    object-fit: cover;
}

.card p {
    font-size: 14px;
    margin-top: 10px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

@media(min-width:768px){
    .gallery {
        grid-template-columns: repeat(3,1fr);
    }
}

/* HAMBURGER ICON */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* MOBILE MENU */
@media(max-width:768px){

    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 60px;
        right: 0;
        background: white;
        width: 100%;
        display: none;
        flex-direction: column;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    nav a {
        padding: 15px;
        border-bottom: 1px solid #eee;
        display: block;
    }

    nav.active {
        display: flex;
    }
}

/* FOOTER */
.footer-full{
width:100%;
background:#263238;
color:#fff;
margin-top:40px;
}

.footer-container{
max-width:1100px;
margin:auto;
padding:50px 20px;
display:grid;
gap:30px;
}

@media(min-width:768px){
.footer-container{
grid-template-columns:repeat(3,1fr);
}
}

.footer-col ul{
list-style:none;
}

.footer-col a{
color:#ccc;
text-decoration:none;
}

.footer-col a:hover{
color:#fff;
}

.copyright{
background:#1b5e20;
color:#fff;
text-align:center;
padding:15px;
}

/* DONATION PAGE FIX */
.container{
max-width:700px;
margin:60px auto;
background:#fff;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
text-align:center;
}

.amounts button{
margin:10px;
padding:12px 20px;
border:none;
background:#e0e0e0;
border-radius:5px;
cursor:pointer;
font-weight:500;
}

.amounts button:hover{
background:#2e7d32;
color:#fff;
}

input{
width:100%;
padding:12px;
margin-top:15px;
border:1px solid #ccc;
border-radius:5px;
}

.donate-btn{
background:#ff9800;
color:#fff;
padding:15px;
border:none;
border-radius:5px;
margin-top:20px;
width:100%;
font-size:16px;
cursor:pointer;
font-weight:600;
}

.donate-btn:hover{
background:#e68900;
}
  </style>

