*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:tahoma;
}

body{

    background:#eef2f5;
    direction:rtl;
    color:#333;
    line-height:2;

}

.container{

    width:90%;
    max-width:1200px;
    margin:40px auto;

}

.back-btn{

    display:inline-block;

    background:#053734;
    color:#fff;

    padding:12px 22px;

    text-decoration:none;

    border-radius:8px;

    margin-bottom:25px;

    transition:.3s;

}

.back-btn:hover{

    background:#D4AF37;
    color:#053734;

}

.hero{

    height:400px;

    background:url("../../images/goals.jpg") center center/cover no-repeat;

    border-radius:20px;

    overflow:hidden;

    margin-bottom:40px;

}

.overlay{

    width:100%;
    height:100%;

    background:rgba(5,55,52,.72);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    color:white;

}

.overlay h1{

    font-size:56px;

    color:#D4AF37;

    margin-bottom:15px;

}

.overlay p{

    font-size:24px;

}

.section{

    background:white;

    padding:35px;

    border-radius:18px;

    margin-bottom:35px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.section h2{

    color:#053734;

    border-right:6px solid #D4AF37;

    padding-right:15px;

    margin-bottom:20px;

    font-size:34px;

}

.section p{

    text-align:justify;

    color:#555;

    font-size:18px;

}

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:25px;

}

.card{

    background:#fafafa;

    border-radius:15px;

    padding:30px;

    text-align:center;

    border-top:5px solid #D4AF37;

    transition:.3s;

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:0 10px 25px rgba(0,0,0,.12);

}

.icon{

    font-size:55px;

    margin-bottom:15px;

}

.card h3{

    color:#053734;

    margin-bottom:10px;

}

.values{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

    gap:18px;

}

.value{

    background:#053734;

    color:white;

    padding:18px;

    text-align:center;

    border-radius:12px;

    font-size:18px;

    transition:.3s;

}

.value:hover{

    background:#D4AF37;

    color:#053734;

}

.promise{

    background:#053734;

    color:white;

    text-align:center;

    padding:50px 35px;

    border-radius:18px;

    margin-bottom:40px;

}

.promise h2{

    color:#D4AF37;

    margin-bottom:20px;

    font-size:38px;

}

.promise p{

    font-size:20px;

    max-width:900px;

    margin:auto;

}

@media(max-width:768px){

.hero{

    height:260px;

}

.overlay h1{

    font-size:34px;

}

.overlay p{

    font-size:17px;

}

.section{

    padding:25px;

}

.section h2{

    font-size:26px;

}

.promise h2{

    font-size:30px;

}

.promise p{

    font-size:17px;

}

}