/* ================================
   FAQ PAGE
================================ */

.faq-page {
    margin-left: 250px;
    background: #ffffff;
}

/* ================================
   HERO
================================ */

.faq-hero {
    height: 320px;

    width: 100vw;
    margin-left: -250px;   /* estende sotto la sidebar */

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-hero-overlay {
    background: rgba(0,0,0,0.35);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-hero h1 {
    color: white;
    font-family: 'CinzelCustom', serif;
    font-size: 2.6rem;
    letter-spacing: 1px;
}

/* ================================
   CONTENT LAYOUT
================================ */

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 40px;
}

.faq-section {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: start;
}

/* category title (left column) */
.faq-section h2 {
    font-family: 'CinzelCustom', serif;
    color: #716551;
    font-size: 42px;
    margin: 0;
}

/* FAQ items column */
.faq-items {
    border-left: 1px solid #eee;
    padding-left: 30px;
}

/* ================================
   QUESTIONS
================================ */

.faq-item {
    margin-bottom: 18px;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 10px 0;
    background: none;
    border: none;
    font-size: 0.98rem;
    cursor: pointer;
    color: #333;
    font-weight: 400; /* removed bold */
    line-height: 1.5;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-answer p {
    margin: 6px 0 14px 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 900px) {

    .faq-page {
        margin-left: 0;
    }

    .faq-section {
        grid-template-columns: 1fr;
    }

    .faq-items {
        border-left: none;
        padding-left: 0;
    }

    .faq-hero {
        margin-left: 0;
        width: 100%;
        height: 240px;
    }}
