.faq-container {
    width: min(900px, calc(100% - 40px));
    margin: 80px auto;
    text-align: center;
}

.faq-header {
    margin-bottom: 55px;
}

.faq-header h1 {
    margin-bottom: 18px;
    font-size: clamp(34px, 5vw, 48px);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.faq-intro {
    width: min(650px, 100%);
    margin: 0 auto;
    color: #d5d5d5;
    line-height: 1.8;
}

.faq-category {
    margin-bottom: 55px;
}

.faq-category > h2 {
    margin-bottom: 22px;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: left;
}

.faq-content {
    width: 100%;
}

.faq-section {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-section:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 24px 5px;
    border: none;
    background: transparent;
    color: inherit;
    cursor: pointer;
    text-align: left;
    font: inherit;
}

.faq-toggle span:first-child {
    flex: 1;
    font-size: 18px;
    font-weight: 500;
}

.faq-icon {
    flex-shrink: 0;
    font-size: 27px;
    font-weight: 300;
    transition: transform 0.25s ease;
}

.faq-toggle:hover .faq-icon {
    transform: scale(1.12);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    visibility: hidden;
    transition:
        grid-template-rows 0.35s ease,
        visibility 0.35s;
}

.faq-answer-inner {
    width: min(700px, 100%);
    margin: 0 auto;
    overflow: hidden;
}

.faq-section.open .faq-answer {
    grid-template-rows: 1fr;
    visibility: visible;
}

.faq-answer p {
    margin: 0 0 16px;
    color: #d5d5d5;
    line-height: 1.8;
    text-align: center;
}

.faq-answer p:last-child {
    margin-bottom: 28px;
}

.faq-contact-link,
.faq-support-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.faq-contact-link {
    margin: 8px 0 30px;
}

.faq-contact-link:hover,
.faq-support-link:hover {
    color: #3A9605;
    transform: translateX(3px);
}

.faq-support {
    margin-top: 70px;
    padding: 45px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-support h2 {
    margin-bottom: 14px;
    font-size: 27px;
    font-weight: 500;
}

.faq-support p {
    width: min(550px, 100%);
    margin: 0 auto 22px;
    color: #d5d5d5;
    line-height: 1.8;
}

@media (max-width: 700px) {
    .faq-container {
        width: calc(100% - 30px);
        margin: 50px auto;
    }

    .faq-header {
        margin-bottom: 42px;
    }

    .faq-category {
        margin-bottom: 45px;
    }

    .faq-category > h2 {
        font-size: 20px;
    }

    .faq-toggle {
        padding: 20px 2px;
    }

    .faq-toggle span:first-child {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 15px;
        line-height: 1.7;
    }

    .faq-support {
        margin-top: 50px;
        padding: 35px 18px;
    }
}