@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root{
    --green:#14382F;
    --green-dark:#0C2722;
    --gold:#C6A15B;
    --beige:#F6F1E8;
    --cream:#FFFDF8;
    --text:#1F2F2B;
    --muted:#74695C;
    --border:rgba(198,161,91,.25);
}

body{
    font-family:"Inter",sans-serif;
    background:var(--beige);
    color:var(--text);
}

.faq-hero{
    padding:110px 20px 85px;
    text-align:center;
    background:
        radial-gradient(circle at 15% 25%,rgba(198,161,91,.15),transparent 28%),
        linear-gradient(135deg,var(--cream),var(--beige));
}

.section-label{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:13px;
    font-weight:800;
}

.faq-hero h1{
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(58px,7vw,105px);
    color:var(--green);
    margin:18px 0;
}

.faq-hero p{
    max-width:780px;
    margin:auto;
    color:var(--muted);
    font-size:19px;
    line-height:1.8;
}

.faq-section{
    padding:85px 20px;
}

.faq-wrapper{
    max-width:980px;
    margin:auto;
}

.faq-item{
    background:white;
    border:1px solid var(--border);
    border-radius:22px;
    margin-bottom:18px;
    box-shadow:0 15px 40px rgba(20,56,47,.07);
    overflow:hidden;
}

.faq-question{
    width:100%;
    border:none;
    background:white;
    padding:24px 28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    color:var(--green);
    font-weight:800;
    font-size:18px;
    text-align:left;
}

.faq-question i{
    color:var(--gold);
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:.35s ease;
}

.faq-answer p{
    padding:0 28px 24px;
    margin:0;
    color:var(--muted);
    line-height:1.8;
}

.faq-item.active .faq-answer{
    max-height:240px;
}

.faq-item.active .faq-question i{
    transform:rotate(45deg);
}

.faq-cta{
    margin:70px 6% 90px;
    padding:65px 40px;
    border-radius:34px;
    background:var(--green);
    color:white;
    text-align:center;
}

.faq-cta h2{
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(44px,5vw,72px);
    margin:16px 0;
}

.faq-cta p{
    max-width:720px;
    margin:0 auto 34px;
    color:#E8DCC8; 
    line-height:1.8;
}

.faq-cta a{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:white;
    color:var(--green);
    text-decoration:none;
    font-weight:800;
    padding:16px 34px;
    border-radius:50px;
    transition:.3s;
}

.faq-cta a:hover{
    background:var(--gold);
    color:var(--green-dark);
}

@media(max-width:576px){
    .faq-section{
        padding:65px 20px;
    }

    .faq-question{
        padding:22px;
        font-size:16px;
    }

    .faq-cta{
        margin:50px 20px;
        padding:45px 24px;
    }
}