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

.phone {
    direction: ltr;
}

body{
    direction:rtl;
    background:#eef2f5;
    color:#333;
}

.container{
    width:90%;
    max-width:1100px;
    margin:40px auto;
}

/* Back Button */

.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 */

.hero{
    height:300px;
    background:linear-gradient(rgba(5,55,52,.75),rgba(5,55,52,.75)),
    url("../../images/faq.jpg") center/cover;
    border-radius:20px;
    overflow:hidden;
    margin-bottom:40px;
}

.overlay{
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:white;
    text-align:center;
    padding:20px;
}

.overlay h1{
    font-size:48px;
    color:#D4AF37;
    margin-bottom:15px;
}

.overlay p{
    font-size:20px;
    line-height:2;
}

/* FAQ */

.faq-container{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.faq-item{
    background:white;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.faq-item:hover{
    box-shadow:0 12px 28px rgba(0,0,0,.15);
}

.faq-question{
    width:100%;
    border:none;
    background:white;
    padding:22px 25px;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:20px;
    font-weight:bold;
    color:#053734;
    transition:.3s;
}

.faq-question:hover{
    background:#eef7f5;
}

.faq-question span{
    width:35px;
    height:35px;
    border-radius:50%;
    background:#D4AF37;
    color:#053734;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    font-weight:bold;
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
    background:#fafafa;
}

.faq-answer p{
    padding:22px 25px;
    line-height:2.2;
    font-size:17px;
    color:#555;
}

/* Responsive */

@media(max-width:768px){

.container{
    width:95%;
}

.hero{
    height:220px;
}

.overlay h1{
    font-size:34px;
}

.overlay p{
    font-size:16px;
}

.faq-question{
    font-size:17px;
    padding:18px;
}

.faq-question span{
    width:30px;
    height:30px;
    font-size:20px;
}

.faq-answer p{
    font-size:15px;
    padding:18px;
}

}