.faq-section{
    background:#f5f7f2;
    padding:100px 20px;
}

.faq-container{
    max-width:760px;
    margin:auto;
}

.faq-item{
    background:#fff;
    border:1px solid #dfe5d8;
    border-radius:14px;

    margin-bottom:14px;

    overflow:hidden;

    box-shadow:
    0 2px 8px rgba(0,0,0,.03);

    transition:.3s;
}

.faq-item:hover{
    border-color:#c9d6c2;
}

.faq-question{
    width:100%;

    background:none;
    border:none;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:22px 24px;

    cursor:pointer;
}

.faq-question span{
    font-family:"Playfair Display", serif;
    font-size:18px;
    font-weight:600;
    color:#19432d;

    text-align:left;
}

.faq-icon{
    width:28px;
    height:28px;

    border-radius:50%;

    background:#eef4e8;

    color:#4d8c50;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:18px;
    font-weight:700;

    flex-shrink:0;
}

.faq-answer{
    max-height:0;
    overflow:hidden;

    transition:max-height .4s ease;
}

.faq-answer p{
    padding:0 24px 24px;

    font-size:15px;
    line-height:1.8;
    color:#6b6b6b;
}

.faq-item.active .faq-answer{
    max-height:200px;
}

.faq-bottom{
    text-align:center;
    margin-top:40px;
}

.faq-bottom p{
    color:#666;
    margin-bottom:18px;
}

.faq-btn{
    display:inline-block;

    background:#c9a227;
    color:#000;

    padding:14px 28px;

    border-radius:6px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.faq-btn:hover{
    transform:translateY(-3px);
}
@media(max-width:768px){

    .faq-section{
        padding:70px 15px;
    }

    .faq-question{
        padding:18px;
    }

    .faq-question span{
        font-size:15px;
        line-height:1.5;
        padding-right:10px;
    }

    .faq-answer p{
        font-size:14px;
        line-height:1.7;
        padding:0 18px 18px;
    }

    .faq-btn{
        width:100%;
        max-width:250px;
    }

}