<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* FAQ Section Styles - Figma Accurate */

.faq-section {
    padding-top: 70px;
    padding-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 55px;
}
.faq-list {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-list.uk-accordion&gt;:nth-child(n+2){
    margin-top: 16px;
}
.faq-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 16px;
    border-bottom: 1px solid var(--color-background-dark);
    background: transparent;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}
.faq-question.uk-accordion-title {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: var(--fs-24);
    font-weight: var(--fw-600);
    line-height: 1;
    color: #000;
    cursor: pointer;
    outline: none;
    text-align: left;
    text-decoration: none;
    padding: 0;
}
.faq-question.uk-accordion-title::before {
    display: none;
}
.faq-question-text {
    flex: 1;
    color: #000;
    text-align: left;
    font-weight: var(--fw-600);
    text-decoration: none;
    transition: none;
}
.faq-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    transition: transform 0.3s;
}
.uk-open .faq-toggle {
    transform: rotate(180deg);
}
.faq-toggle svg {
    width: 24px;
    height: 24px;
    display: block;
}
.faq-answer {
    width: 100%;
    display: none;
    padding-top: 16px;
    margin-top: 0;
}
.uk-open .faq-answer {
    display: block;
}
.faq-answer-content {
    font-family: 'Roboto', sans-serif;
    font-size: var(--fs-16);
    font-weight: var(--fw-400);
    color: var(--color-text-dark);
    line-height: 1.4;
}
.faq-answer-content p:last-child {
    margin-bottom: 0;
}
.faq-answer-content a {
    color: #c36;
}

/* Modern FAQ Accordion Animation: Fade + Slide */
.uk-accordion-content, .faq-answer {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1), transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.uk-open .uk-accordion-content, .uk-open .faq-answer {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
@media (max-width: 1200px) {
    .faq-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
@media (max-width: 768px) {
    .faq-section {
        padding-top: 40px;
        padding-bottom: 40px;
        gap: 12px;
    }

    .faq-item {
        padding: 12px 0;
    }
    .faq-question.uk-accordion-title {
        font-size: var(--fs-18);
        min-width: 44px;
        min-height: 44px;
    }
    .faq-toggle {
        min-width: auto;
        min-height: auto;
    }
    .faq-answer-content * {
        font-size: var(--fs-15);
    }
    .faq-list.uk-accordion&gt;:nth-child(n+2){
        margin-top: 0;
    }
    .faq-answer{
        padding-top: 8px;
    }
} </pre></body></html>