/* faq.css */

:root {
    --faq-yellow: #F5C518;
    --faq-black:  #111111;
    --faq-cyan:   #26C6DA;
    --faq-grey:   #6b6b6b;
}

.faq-page {
    width: 100%;
    max-width: 780px;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 40px 5% 80px 5%;
    text-align: left;
}

.faq-page * {
    box-sizing: border-box;
}

.faq-heading {
    margin-bottom: 32px;
}

.faq-heading h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: var(--faq-black);
    margin: 0;
}

.faq-kicker {
    font-family: 'Roboto', monospace;
    font-size: 12px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--faq-grey);
    margin: 6px 0 0 0;
}

.faq-groups {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.faq-group-title {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--faq-grey);
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--faq-black);
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid #e2e2e2;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    border-radius: 0;
    text-align: left;
    padding: 18px 4px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--faq-black);
}

.faq-question:hover {
    color: var(--faq-cyan);
    background: none;
}

.faq-toggle-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--faq-black);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.15s ease;
}

.faq-item--open .faq-toggle-icon {
    background-color: var(--faq-black);
    color: var(--faq-yellow);
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 28px 18px 4px;
}

.faq-item--open .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--faq-grey);
}

.faq-answer a {
    color: var(--faq-black);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #26C6DA;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

.faq-answer a:hover {
    color: #26C6DA;
    text-decoration-color: #26C6DA;
}

.faq-cta {
    margin-top: 56px;
    border: 2px solid var(--faq-black);
    padding: 32px;
    text-align: center;
}

.faq-cta h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--faq-black);
    margin: 0 0 6px 0;
}

.faq-cta p {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: var(--faq-grey);
    margin: 0 0 18px 0;
}

.faq-cta-btn {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    background-color: var(--faq-black);
    color: #fff;
    border: 2px solid var(--faq-black);
    padding: 12px 28px;
    cursor: pointer;
}

.faq-cta-btn:hover {
    background-color: var(--faq-yellow);
    color: var(--faq-black);
    border-color: var(--faq-yellow);
}

/* ==== Desktop (min-width: 1001px) ==== */
@media (min-width: 1001px) {

.faq-page {
    padding: 60px 0 100px 0;
}

.faq-heading h1 {
    font-size: 36px;
}

}
