.desktop-br {
    display: inline;
}

.mobile-br {
    display: none;
}

.desktop-left-column {
    padding: 0px 0px 0px 0px;
}

.desktop-right-column {
    padding: 0px 0px 0px 00px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.5;
}

.breadcrumb-item a {
    color: #999999;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #072260;
    font-size: 14px;
    font-weight: 400;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #072260;
    font-size: 14px;
    font-weight: 400;
    align-self: center;
    line-height: 1.5;
}

.hero-section {
    color: #1C1C1C;
    padding: 40px;
}

.hero-title {
    font-size: 40px;
    font-weight: 600;
}

.faq-page .accordion-item {
    margin-bottom: 10px;
    border-radius: 20px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: none !important;
    background-color: white !important;
    width: 100%;
    max-width: 580px;
}

.faq-page .accordion-button {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #414141;
    padding: 26px 22px 26px 22px;
    height: 80px;
    width: 100%;
    border-radius: 20px !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    background: white !important;
}

.faq-page .accordion-button:not(.collapsed) {
    background-color: white !important;
    color: inherit !important;
    box-shadow: none !important;
    border: none !important;
}

.faq-page .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
}

.faq-page .accordion-button::after {
    background-image: var(--faq-page-accordion-button-plus);
    background-size: 2.0rem;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s ease-in-out;
    transform: none;
    padding: 1.1rem;
}

.faq-page .accordion-button:not(.collapsed)::after {
    background-image: var(--faq-page-accordion-button-minus);
    transform: none;
}

.faq-page .accordion-body {
    padding: 0px 140px 23px 24px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #414141;
    background-color: white !important;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

@media(max-width: 1024px) {
    .faq-page {
        padding: 0 10px;
    }

    .faq-page .desktop-left-column .faq-category {
        margin-right: 10px;
    }
}

@media(max-width: 992px) {
    .faq-page .desktop-left-column .faq-category {
        margin-right: 0;
    }

    .faq-page .accordion-item {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 0px 15px 18px 15px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 30px;
    }

    .faq-page .accordion-item {
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 5px;
    }

    .faq-page .accordion-button {
        font-weight: 600;
        font-size: 14px;
        line-height: 18px;
        padding: 12px 12px 12px 12px;
        height: auto;
        border-radius: 12px !important;
    }

    .faq-page .accordion-body {
        padding: 0px 30px 18px 14px;
        line-height: 20px;
    }

    .desktop-left-column {
        padding: 0;
    }

    .desktop-right-column {
        padding: 0;
    }

    .faq-category {
        margin-bottom: 0px;
    }

    .breadcrumb {
        display: none;
    }

    .mobile-br {
        display: block; 
        height: 0;       
    }

    .desktop-br {
        display: none;
    }
}