*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f5f5;
    color:#333;
    line-height:1.8;
}


/* HERO */

.hero{
    position:relative;
    height:380px;
    overflow:hidden;
}

.hero img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;

    background:rgba(0,60,40,.60);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
    padding:20px;
}

.overlay h1{
    color:white;
    font-size:52px;
    letter-spacing:1px;
    margin-bottom:8px;
}

.overlay p{
    color:#FFD700;
    font-size:24px;
    font-weight:bold;
}


/* BACK BUTTON */

.top-bar{
    max-width:1100px;
    margin:30px auto;
    padding:0 20px;
}

.back-btn{
    display:inline-block;

    background:#0B6E4F;
    color:white;

    text-decoration:none;

    padding:12px 25px;

    border-radius:30px;

    font-weight:bold;

    transition:.3s;

    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.back-btn:hover{
    background:#FFD700;
    color:#0B6E4F;
}


/* CONTENT */

.content{
    width:92%;
    max-width:1100px;
    margin:auto;
    padding:10px 0 40px;
}


/* INTRO SECTIONS */

.intro-section{
    background:white;

    padding:30px;

    border-radius:15px;

    margin-bottom:25px;

    box-shadow:0 6px 18px rgba(0,0,0,.07);
}

.intro-section h2{
    color:#0B6E4F;

    margin-bottom:15px;

    font-size:30px;
}

.intro-section p{
    margin-bottom:12px;

    font-size:17px;
}

.arabic-section{
    direction:rtl;
    text-align:right;
}


/* DONATION CARDS */

.donation-options{
    display:grid;

    grid-template-columns:repeat(2, 1fr);

    gap:25px;

    margin:40px 0;
}

.donation-card{
    background:white;

    padding:30px;

    border-radius:15px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.3s;
}

.donation-card:hover{
    transform:translateY(-6px);

    box-shadow:0 12px 28px rgba(0,0,0,.13);
}

.donation-card h3{
    color:#0B6E4F;

    margin-bottom:15px;

    font-size:23px;
}

.donation-card p{
    margin-bottom:12px;
}

.donation-card strong{
    color:#0B6E4F;
    font-size:18px;
}


/* BANK DETAILS */

.bank-details{
    background:#eef5f1;

    padding:35px;

    border-left:6px solid #0B6E4F;

    border-radius:12px;

    margin-top:30px;

    box-shadow:0 6px 16px rgba(0,0,0,.06);
}

.bank-details h2{
    color:#0B6E4F;

    margin-bottom:20px;
}

.bank-details p{
    margin-bottom:12px;
}

.arabic-section.bank-details{
    border-left:none;

    border-right:6px solid #0B6E4F;
}


/* FOOTER */

footer{
    background:#0B6E4F;

    color:white;

    text-align:center;

    padding:25px;

    margin-top:60px;
}


/* TABLET */

@media(max-width:850px){

    .donation-options{
        grid-template-columns:1fr 1fr;
    }

    .hero{
        height:300px;
    }

    .overlay h1{
        font-size:40px;
    }

}


/* MOBILE */

@media(max-width:600px){

    .donation-options{
        grid-template-columns:1fr;
    }

    .hero{
        height:250px;
    }

    .overlay h1{
        font-size:31px;
    }

    .overlay p{
        font-size:18px;
    }

    .intro-section{
        padding:22px;
    }

    .donation-card{
        padding:24px;
    }

    .bank-details{
        padding:25px;
    }

}