.ns2025-faq-topic {
    background: #f9fafb;
    color: #1f2937;
    font-family: inherit;
    overflow-x: clip;
    scroll-behavior: smooth;
    width: 100%;
}

.ns2025-faq-topic *,
.ns2025-faq-topic *::before,
.ns2025-faq-topic *::after {
    box-sizing: border-box;
}

.ns2025-faq-topic__header {
    background: #fff;
    border-radius: 4px;
    padding: 40px 20px;
    text-align: center;
}

.ns2025-faq-topic__header h2 {
    color: #565656;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
}

.ns2025-faq-topic__mobile-nav {
    background: #fff;
    border-bottom: 2px solid #e5e7eb;
    display: none;
    padding: 30px 0 10px;
    position: sticky;
    top: 0;
    z-index: 30;
}

.ns2025-faq-topic__mobile-nav::after {
    animation: ns2025-faq-topic-nudge 3s ease-in-out infinite;
    color: #64748b;
    content: "scrollen ->";
    font-size: 11px;
    font-weight: 700;
    left: 50%;
    letter-spacing: 1px;
    position: absolute;
    text-transform: uppercase;
    top: 7px;
    transform: translateX(-50%);
    white-space: nowrap;
}

.ns2025-faq-topic__mobile-nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    overflow-x: auto;
    padding: 0 20px;
    scrollbar-width: none;
}

.ns2025-faq-topic__mobile-nav ul::-webkit-scrollbar {
    display: none;
}

.ns2025-faq-topic__mobile-nav a {
    color: #111827;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.ns2025-faq-topic__layout {
    align-items: flex-start;
    display: flex;
    gap: 60px;
    margin: 0 auto;
    max-width: 1300px;
    padding: 40px 20px 100px;
}

.ns2025-faq-topic__sidebar {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
    flex: 0 0 350px;
    padding: 26px;
    position: sticky;
    top: 155px;
}

.ns2025-faq-topic__sidebar h3 {
    color: #3b6cb9;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 10px;
}

.ns2025-faq-topic__sidebar p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 22px;
}

.ns2025-faq-topic__sidebar ul {
    display: grid;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ns2025-faq-topic__sidebar a {
    align-items: center;
    border-left: 4px solid transparent;
    color: #1f2937;
    display: flex;
    font-size: 16px;
    font-weight: 700;
    min-height: 42px;
    padding: 8px 12px;
    text-decoration: none;
    transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.ns2025-faq-topic__sidebar a:hover,
.ns2025-faq-topic__sidebar a:focus {
    background: rgba(59, 108, 185, .08);
    border-left-color: #99cd21;
    color: #3b6cb9;
    outline: none;
}

.ns2025-faq-topic__content {
    flex: 1 1 auto;
    min-width: 0;
}

.ns2025-faq-topic__section {
    scroll-margin-top: 150px;
}

.ns2025-faq-topic__section + .ns2025-faq-topic__section {
    margin-top: 50px;
}

.ns2025-faq-topic__section > h3 {
    color: #3b6cb9;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 28px;
    padding-bottom: 16px;
    position: relative;
}

.ns2025-faq-topic__section > h3::after {
    background: #99cd21;
    border-radius: 999px;
    bottom: 0;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    width: 48px;
}

.ns2025-faq-topic__section > h4 {
    color: #334155;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.3;
    margin: 30px 0 14px;
}

.ns2025-faq-topic__item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-left: 6px solid #3b6cb9;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
    margin: 0 0 12px;
    overflow: hidden;
}

.ns2025-faq-topic__item[open] {
    border-left-color: #99cd21;
}

.ns2025-faq-topic__item summary {
    align-items: center;
    color: #111827;
    cursor: pointer;
    display: flex;
    font-size: 17px;
    font-weight: 800;
    gap: 18px;
    justify-content: space-between;
    line-height: 1.35;
    list-style: none;
    padding: 20px 22px;
}

.ns2025-faq-topic__item summary::-webkit-details-marker {
    display: none;
}

.ns2025-faq-topic__plus {
    align-items: center;
    color: #3b6cb9;
    display: inline-flex;
    flex: 0 0 28px;
    font-size: 26px;
    font-weight: 800;
    height: 28px;
    justify-content: center;
    line-height: 1;
    transition: color .18s ease, transform .18s ease;
    width: 28px;
}

.ns2025-faq-topic__item[open] .ns2025-faq-topic__plus {
    color: #99cd21;
    transform: rotate(45deg);
}

.ns2025-faq-topic__answer {
    border-top: 1px solid #eef2f7;
    color: #475569;
    font-size: 16px;
    line-height: 1.65;
    padding: 0 22px 22px;
}

.ns2025-faq-topic__answer p {
    margin: 16px 0 0;
}

.ns2025-faq-topic__answer ul,
.ns2025-faq-topic__answer ol {
    margin: 14px 0 0 22px;
    padding: 0;
}

.ns2025-faq-topic__answer li + li {
    margin-top: 7px;
}

.ns2025-faq-topic__answer a {
    color: #3b6cb9;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@keyframes ns2025-faq-topic-nudge {
    0%,
    100% {
        opacity: .65;
        transform: translateX(-50%);
    }

    50% {
        opacity: 1;
        transform: translateX(-35%);
    }
}

@media (max-width: 980px) {
    .ns2025-faq-topic__mobile-nav {
        display: block;
    }

    .ns2025-faq-topic__layout {
        display: block;
        padding: 28px 16px 70px;
    }

    .ns2025-faq-topic__sidebar {
        display: none;
    }

    .ns2025-faq-topic__section {
        scroll-margin-top: 95px;
    }
}

@media (max-width: 640px) {
    .ns2025-faq-topic__header {
        padding: 30px 16px;
    }

    .ns2025-faq-topic__item summary {
        font-size: 16px;
        padding: 18px 16px;
    }

    .ns2025-faq-topic__answer {
        font-size: 15px;
        padding: 0 16px 18px;
    }
}
