section {
    padding-top: 48px;
    padding-bottom: 48px;
}

section:nth-of-type(odd) {
    background-color: #DBDFFF;
}

section:nth-of-type(even) {
    background-color: #F3F3FF;
}   

.top-hero-section__title {
    text-align: center;
    margin-bottom: 16px;
}

.top-hero-section__title * {
        color: #1700FF;
    font-family: "ClashDisplay-SemiBold";
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 16px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.top-hero-section__title p {
        color: #000;
    font-family: "ClashDisplay-SemiBold";
    font-size: 26px;
    margin-bottom: 16px;
    text-align: center;
}

@media (max-width: 550px) {
    .top-hero-section__title * {
        font-size: 32px;
        line-height: 1.2;
    }
}

.top-hero-section__copy {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 48px auto;
}

.top-hero-section__copy * {
    color: #000;
    font-family: "ClashDisplay-Medium";
    font-size: 20px;
    line-height: 24px;
    text-align: center;
}

.top-hero-section__ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
}

@media (max-width: 550px) {
    .top-hero-section__ctas {
        flex-direction: column;
    }
}

.faq-anchor-nav {
    margin-top: 24px;
}

.faq-anchor-nav__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.faq-anchor-nav__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.faq-anchor-nav__scroll::-webkit-scrollbar {
    display: none;
}

.faq-anchor-nav__list {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    width: max-content;
    margin: 0 auto;
    padding: 0;
}

.faq-anchor-nav__link {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #12112724;
    border-radius: 50px;
    font-family: "ClashDisplay-Medium";
    font-size: 14px;
    color: #121127;
    text-decoration: none;
    background: #fff;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.faq-anchor-nav__link:hover {
    background: #1700FF;
    color: #fff;
    border-color: #1700FF;
}

.faq-anchor-nav__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border: 1px solid #12112724;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.faq-anchor-nav__toggle:hover {
    background: #1700FF;
    border-color: #1700FF;
}

.faq-anchor-nav__toggle:hover .faq-anchor-nav__toggle-icon {
    color: #fff;
}

.faq-anchor-nav__toggle-icon {
    color: #999;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-anchor-nav__toggle.is-open .faq-anchor-nav__toggle-icon {
    transform: rotate(180deg);
}

.faq-anchor-nav.is-sticky {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    margin-top: 0;
    padding: 12px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}