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

body{

    direction:rtl;

    background:#eef2f5;

    color:#333;

    line-height:2;

}

.container{

    width:90%;

    max-width:1200px;

    margin:40px auto;

}

.back-btn{

    display:inline-block;

    background:#053734;

    color:#fff;

    text-decoration:none;

    padding:12px 24px;

    border-radius:8px;

    margin-bottom:25px;

    transition:.3s;

}

.back-btn:hover{

    background:#D4AF37;

    color:#053734;

}

.hero{

    height:500px;

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

    border-radius:20px;

    overflow:hidden;

    margin-bottom:40px;

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

}

.overlay{

    width:100%;

    height:100%;

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

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    color:white;

    text-align:center;

}

.principal-photo{

    width:170px;

    height:170px;

    border-radius:50%;

    border:6px solid #D4AF37;

    object-fit:cover;

    margin-bottom:20px;

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

}

.overlay h1{

    color:#D4AF37;

    font-size:46px;

    margin-bottom:10px;

}

.position{

    font-size:22px;

}

.message-card{

    background:white;

    padding:40px;

    border-radius:18px;

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

    margin-bottom:35px;

}

.message-card h2{

    color:#053734;

    margin-bottom:25px;

    border-right:6px solid #D4AF37;

    padding-right:15px;

    font-size:34px;

}

.message-card p{

    margin-bottom:20px;

    font-size:18px;

    color:#555;

    text-align:justify;

}

.goals{

    background:white;

    padding:40px;

    border-radius:18px;

    margin-bottom:35px;

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

}

.goals h2{

    color:#053734;

    margin-bottom:30px;

    border-right:6px solid #D4AF37;

    padding-right:15px;

    font-size:34px;

}

.goal-grid{

    display:grid;

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

    gap:25px;

}

.goal-box{

    background:#fafafa;

    border-top:5px solid #D4AF37;

    border-radius:15px;

    padding:30px;

    text-align:center;

    transition:.3s;

}

.goal-box:hover{

    transform:translateY(-8px);

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

}

.icon{

    font-size:55px;

    margin-bottom:15px;

}

.goal-box h3{

    color:#053734;

    margin-bottom:12px;

}

.goal-box p{

    color:#666;

}

.quote{

    background:#053734;

    color:white;

    text-align:center;

    padding:60px 30px;

    border-radius:20px;

    margin-bottom:40px;

}

.quote h2{

    color:#D4AF37;

    font-size:36px;

    margin-bottom:20px;

}

.quote p{

    font-size:20px;

    margin-bottom:20px;

}

.quote h3{

    font-size:28px;

}

@media(max-width:768px){

.hero{

    height:420px;

}

.principal-photo{

    width:130px;

    height:130px;

}

.overlay h1{

    font-size:32px;

}

.position{

    font-size:18px;

}

.message-card,
.goals{

    padding:25px;

}

.message-card h2,
.goals h2{

    font-size:26px;

}

.quote h2{

    font-size:28px;

}

.quote h3{

    font-size:22px;

}

}