<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* FAQ */
.faq__title {
    font-family: "TheSunW01-Bold";
    font-size: 1.375rem;
    line-height: 1.5rem;
    font-weight: 700;
    margin-block: 1rem;
    text-align: center;
}

@media screen and (min-width: 450px) {
    .faq__title {
        font-size: 2.5rem;
    }
}

.faq__item__question {
    all: unset;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dcdddd;
    padding-inline: 0.5rem;
    padding-block: 1rem;
    width: 100%;
}

.faq__item__icon {
    align-self: center;
    transition: 0.3s;
    height: 24px;
    width: 24px;
}

.faq__item__text {
    font-family: "TheSunW01-Bold";
    font-weight: 700;
    line-height: 1.25rem;
}

@media screen and (min-width: 450px) {
    .faq__item__text {
        font-size: 1.25rem;
    }
}

.faq__item__answer {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.125rem;
    letter-spacing: 0em;
    text-align: left;
    overflow: hidden;
    max-height: 0;
}

.clicked .faq__item__answer {
    max-height: fit-content;
    margin-top: 1rem;
}

@media screen and (min-width: 450px) {
    .faq__item__answer {
        font-size: 1rem;
        line-height: 1.25rem;
    }
}

.clicked .faq__item__icon {
    transform: rotate(180deg);
}

.faq__help {
    display: flex;
    justify-content: center;
    padding: 0.75rem 0;
    font-family: "TheSunW01-Bold";
}

.faq__help__link {
    line-height: 1.5rem;
    font-weight: 700;
    color: #5ba9ff;
}

@media screen and (min-width: 450px) {
    .faq__help__link {
        font-size: 1.125rem;
    }
}
</pre></body></html>