#faqs-section {
    padding-top: 80px;
    padding-bottom: 24px;
    margin: 0 auto;
    box-sizing: border-box;
}

h1.faqs-title {
    font-size: 38px;
    margin-bottom: 80px;
    font-family: 'DIN Round Pro Bold';
    text-align: center;
    color: #1F1F1F;
}

.section-title {
    font-family: 'DIN Round Pro Bold';
    color: #1F1F1F;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 32px;
    font-size: 28px;
}

.faq-accordion {
    margin-bottom: 56px;
}

.faq-accordion-item {
    overflow: hidden;
}

.pin-item {
    background: #F1F1F1;
    border-radius: 8px;
    margin-bottom: 8px;
}

.pin-item .faq-accordion-header {
    padding: 24px;
}

.pin-item .faq-accordion-content {
    padding: 0 24px;
}

.pin-item .faq-accordion-content.active {
    padding-bottom: 24px;
}

.faq-accordion-header {
    padding: 24px 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-family: 'DIN Round Pro Bold';
    color: #1F1F1F;
    line-height: 20px;
}

.faq-accordion-header span {
    max-width: 632px;
}

.faq-accordion-content {
    padding: 0 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out, padding 0.2s ease-out;
    line-height: 24px;
    font-size: 16px;
    font-family: 'DIN Round Pro';
    color: #1F1F1F;
    text-align: left;
}

.faq-accordion-content p {
    color: #1F1F1F !important;
    font-family: 'DIN Round Pro' !important;
    line-height: 24px;
    margin-bottom: 20px;
}

#allTopics .faq-accordion-content {
    border-bottom: 1px solid #F1F1F1;
}

#allTopics .faq-accordion-item:first-child {
    border-top: 1px solid #F1F1F1;
}

.faq-accordion-content.active {
    padding-bottom: 1.5rem;
    max-height: 1000px;
    transition: max-height 0.2s ease-in, padding 0.2s ease-in;
}

.chevron {
    transition: transform 0.3s ease;
}

.faq-accordion-header.active .chevron {
    transform: rotate(180deg);
}

.faq-container {
    background: #ffffff;
}

.faq-container.sticky {
    position: fixed;
    top: 0;
    width: 704px;
    background: white;
    padding-top: 120px;
    z-index: 1029;
}

.faq-filter-section {
    display: flex;
    justify-content: space-between;
}

.topic-dropdown {
    position: relative;
    width: 400px;
    font-family: 'DIN Round Pro';

}

.topic-dropdown-button {
    width: 100%;
    padding: 16px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1f1f1f;
    font-family: 'DIN Round Pro';
}

.topic-dropdown-button:focus {
    outline-color: #FF9E1B !important;
}

.topic-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    margin-top: 0.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    z-index: 1000;
}

.topic-dropdown-content.active {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #ddd;
}

/* 2. The width of the entire scrollbar */
.topic-dropdown-content.active::-webkit-scrollbar {
    width: 10px;
}

/* 3. The background of the scrollbar (track) */
.topic-dropdown-content.active::-webkit-scrollbar-track {
    background: transparent;
}

/* 4. The draggable handle (thumb) */
.topic-dropdown-content.active::-webkit-scrollbar-thumb {
    background-color: #d1d1d1;
    border-radius: 20px;
    border: 3px solid transparent;
    background-clip: content-box;
}

/* 5. Handle on hover */
.topic-dropdown-content.active::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

.topic-dropdown-item {
    padding: 1rem;
    cursor: pointer;
    color: #1f1f1f;
}

.topic-dropdown-item:hover {
    background: #f5f5f5;
}

.topic-section {
    display: block;
    margin-top: 32px;
}

.topic-title {
    font-size: 21px;
    margin-bottom: 25px;
    color: #1f1f1f;
    font-family: 'DIN Round Pro';
}

a {
    color: #ff9800;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.hidden {
    display: none;
}

/* Update dropdown mobile START */
.dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1031;
}

.dropdown-overlay.active {
    display: block;
}

.mobile-topic-dropdown {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 30px 30px 0 0;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
    z-index: 1032;
    display: none;
    max-height: 750px;
}

@media (max-width: 768px) {
    .mobile-topic-dropdown {
        display: block;
    }

    .topic-dropdown-content {
        display: none !important;
    }

    #faqs-section {
        padding-top: 40px;
        padding-bottom: 0px;
        padding-left: 24px;
        padding-right: 24px;
    }

    h1.faqs-title {
        font-size: 28px;
        margin-bottom: 56px;
    }

    .faq-accordion {
        margin-bottom: 48px;
    }

    .section-title {
        font-size: 21px;
        margin-bottom: 24px;
    }

    .topic-section:last-child .faq-accordion {
        margin-bottom: 40px;
    }

    .faq-accordion-header {
        font-size: 16px;
    }

    .topic-dropdown-button {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .topic-title {
        font-size: 18px;
    }

    .faq-accordion-header span {
        max-width: 255px;
    }

    .faq-accordion-content {
        font-size: 16px;
    }

    .faq-accordion-content p {
        font-size: 16px;
    }

    .faq-container.sticky {
        width: 88%;
    }
}

@media only screen and (max-width: 600px) {
    .faq-filter-section {
        display: flex;
        justify-content: space-between;
        margin-bottom: 2rem;
        flex-direction: column;
    }

    .topic-dropdown {
        position: relative;
        width: 100% !important;
    }
}

.mobile-topic-dropdown.active {
    transform: translateY(0);
}

.topic-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
}

.topic-header h2 {
    font-size: 21px;
    font-family: 'DIN Round Pro Bold';
}

.close-button {
    border: none;
    background: none;
    padding: 8px;
    cursor: pointer;
}

.mobile-topic-container {
    padding: 0 24px;
    padding-bottom: 40px;
    color: #1F1F1F;
}

.mobile-topic-list {
    max-height: 70vh;
    overflow-y: auto;
}

.mobile-topic-item {
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px
}

.mobile-topic-item:active {
    background: #f5f5f5;
}

.mobile-topic-item.selected {
    background-color: #F1F1F1;
}

/* Update dropdown mobile END */