/* /faq section */

.faq-section{
    display:grid;
    grid-template-columns:360px 1fr;
    width:88%;
    max-width:1200px;
    margin:100px auto;
    padding:50px 55px;
    gap:55px;
    align-items:center;
    border-radius:30px;
    border:1px solid rgba(214,163,71,0.18);
box-shadow:
0 15px 40px rgba(214,163,71,0.08);
}

.faq-tag{
    display:inline-block;
    padding:8px 18px;
    border:1px solid rgba(224,192,122,.4);
    border-radius:30px;
    color:#e0c07a;
    margin-bottom:20px;
}

.faq-left h2{
    font-size:3.4rem;
    line-height:1.1;
    margin-bottom:18px;
    color:white;
}

.faq-left p{
    color:#999;
    line-height:1.7;
    max-width:300px;
}

.faq-card{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:18px 24px;
    margin-bottom:16px;
    transition:.35s;
}

.faq-card:hover{
    border-color:#e0c07a;
}

.faq-card summary{
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:white;
    font-size:17px;
    font-weight:600;
    list-style:none;
}

.faq-card summary::-webkit-details-marker{
    display:none;
}

.faq-card p{
    margin-top:20px;
    color:#999;
    line-height:1.8;
}

.faq-card[open]{
    border-color:#e0c07a;
    box-shadow:0 0 25px rgba(224,192,122,.15);
}

