.faq-page {
    padding-bottom: 20px;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HERO */

.faq-hero {
    padding: 32px 0 10px;
}

.faq-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f2f2f2;
    color: #444;
    font-size: 13px;
    margin-bottom: 16px;
}

.faq-hero h1 {
    font-size: 32px;
    margin-bottom: 14px;
    color: #111;
}

.faq-hero p {
    max-width: 760px;
    color: #555;
    line-height: 1.7;
    font-size: 16px;
}

/* LAYOUT */

.faq-content-section {
    padding: 24px 0;
}

.faq-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
    align-items: start;
}

/* SIDE */

.faq-side-card {
    background: #fff;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
    position: sticky;
    top: 24px;
    background-clip: padding-box;
}

.faq-side-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #111;
}

.faq-side-card a {
    display: block;
    padding: 10px 0;
    color: #444;
    border-bottom: 1px solid #efefef;
    transition: color 0.2s ease;
}

.faq-side-card a:last-child {
    border-bottom: none;
}

.faq-side-card a:hover {
    color: #111;
}

/* MAIN */

.faq-main {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.faq-group {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
    background-clip: padding-box;
}

.faq-group h2 {
    font-size: 22px;
    margin-bottom: 18px;
    color: #111;
}

/* ACCORDION */

.faq-item {
    border-top: 1px solid #ececec;
}

.faq-item:first-of-type {
    border-top: none;
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
    padding: 18px 16px;
    font-size: 17px;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    outline: none;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-question span:last-child {
    font-size: 26px;
    line-height: 1;
    color: #555;
    transition: transform 0.2s ease;
}

.faq-item.active .faq-question span:last-child {
    transform: rotate(45deg);
}

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

.faq-answer p {
    padding: 0 16px 18px;
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

/* CONTACT */

.faq-contact {
    padding: 10px 0 24px;
}

.faq-contact-box {
    background: #fff;
    border-radius: 24px;
    padding: 34px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
    background-clip: padding-box;
}

.faq-contact-box h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #111;
}

.faq-contact-box p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.faq-contact-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.faq-btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: 0.2s ease;
    background-clip: padding-box;
}

.faq-btn.primary {
    background: #222;
    color: #fff;
    border-color: #222;
}

.faq-btn.primary:hover {
    background: #111;
}

.faq-btn.secondary {
    background: #fff;
    color: #222;
}

.faq-btn.secondary:hover {
    background: #f3f3f3;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-side-card {
        position: static;
    }
}

@media (max-width: 700px) {
    .faq-container {
        padding: 0 18px;
    }

    .faq-hero h1 {
        font-size: 32px;
    }

    .faq-group,
    .faq-side-card,
    .faq-contact-box {
        padding: 22px;
    }

    .faq-group h2,
    .faq-contact-box h2 {
        font-size: 24px;
    }

    .faq-question {
        font-size: 15px;
    }
}