.banner_caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner_caption_text {
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 0;
    color: white;
    text-transform: uppercase;
}

.step_section_padding{
    padding-top:40px;
    padding-bottom:40px;
}


.faq_introText{
    padding-top:75px;
}

.faq-demo-container {
    padding: 40px 0 30px 0;
    background-color: #fff;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/*.faq-demo-container .container-fluid {
    padding-left:60px;
    padding-right:80px;
}*/

.faq-content-wrapper {
    display: flex;
    gap: 34px;
}

.brand-filter-sidebar {
    width: 330px;
    height:fit-content;
    flex-shrink: 0;
    background: #fff;
    padding: 40px 25px 40px 40px;
    /*border: 1px solid #e8e8e8;*/
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 5px 0px rgba(123, 123, 123, 0.3);
}

.brand-list-wrapper {
    max-height: 480px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 15px;
}

    /* Custom Scrollbar for brand list */
    .brand-list-wrapper::-webkit-scrollbar {
        width: 6px;
    }

    .brand-list-wrapper::-webkit-scrollbar-track {
        /*background: #f1f1f1;*/
        background-color: rgb(240, 240, 240);
    }

    .brand-list-wrapper::-webkit-scrollbar-thumb {
        background-color: rgb(204, 204, 204);
        border-radius: 10px;
    }

        .brand-list-wrapper::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }

/*.main_qusAns_style{
    display:flex;
    gap:40px;
}*/

.main_qusAns_col {
    /*width: 50%;*/
    padding: 0 17px 0 17px;
}

.faq-question-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
    user-select: none;
    text-decoration: none;
    color: #222;
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 5px 0px rgba(123, 123, 123, 0.26);
}

    .faq-question-item:hover {
        border-color: #ccc;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }

    .faq-question-item.active {
        border-color: #bbb;
    }

    .faq-question-item span {
        font-size: 16px;
        font-weight: 300;
        color: black;
        line-height: 1.5;
        flex: 1;
    }

    .faq-question-item i {
        font-size: 13px;
        font-weight:bold;
        color: rgb(34, 34, 34);
        margin-left: 12px;
        flex-shrink: 0;
        transition: transform 0.25s ease;
    }

.faq-answer-block {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    background-color: transparent;
}

    .faq-answer-block.show {
        max-height: 600px;
    }

.faq-answer-text {
    padding: 0px 25px 25px 25px;
    color: rgb(34, 34, 34);
    font-size: 15px;
    line-height: 1.85;
    font-weight: 300;
    margin: 0;
}

.faq-item-container {
    margin-bottom: 0;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 25px;
    padding-bottom: 14px;
    /*border-bottom: 1px solid #eee;*/
}

.filter-title {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #222;
}

.clear-filter {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    transition: 0.2s;
}

    .clear-filter:hover {
        color: #000;
        text-decoration: none;
    }

.brand-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .brand-list li {
        margin-bottom: 25px;
    }

.brand-item-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #444;
    font-size: 13px;
    transition: 0.2s;
}

.brand-item-container {
    margin-bottom: 12px;
}

.brand-item-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    color: black;
    font-size: 15px;
    font-weight:300;
    transition: 0.2s;
    line-height:1.2;
}

    .brand-item-label input[type="radio"] {
        display: none;
    }

.ug-custom-radio-label input[type="radio"] {
    display: none !important;
}

.radio-marker {
    width: 14px;
    height: 14px;
    border: 1px solid #ccc;
    border-radius: 50%;
    margin-right: 25px;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

    .radio-marker::after {
        content: '';
        width: 8px;
        height: 8px;
        background: #e3b564;
        border-radius: 50%;
        display: none;
    }

.brand-item-label input[type="radio"]:checked + .radio-marker,
.ug-custom-radio-label input[type="radio"]:checked + .radio-marker {
    border-color: #e3b564 !important;
}

    .brand-item-label input[type="radio"]:checked + .radio-marker::after,
    .ug-custom-radio-label input[type="radio"]:checked + .radio-marker::after {
        display: block;
    }

.brand-item-label:hover {
    color: #000 !important;
}

.brand-item-label.active-brand {
    color: #000 !important;
    font-weight: normal !important;
}

.brand-name {
    font-weight: normal !important;
}

.faq-main-content {
    flex-grow: 1;
}

.faq-categories-grid {
    column-count: 2;
    column-gap: 100px;
}

.faq-category-block {
    break-inside: avoid;
    margin-bottom: 35px;
}

.faq-category-title {
    font-size: 24px;
    font-weight: 500;
    color: black;
    margin-bottom: 28px;
    margin-top: 28px;
    margin-left:23px;
    text-transform: uppercase;
    line-height: 1.2;
}

.faq-questions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.learn-more-cards {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.learn-card {
    position: relative;
    height: 250px;
    overflow: hidden;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
}

    .learn-card .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.4);
        z-index: 1;
    }

    .learn-card .card-content {
        position: relative;
        z-index: 2;
    }

    .learn-card h4 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px;
    }

.btn-learn-more {
    border: 1px solid #fff;
    color: #fff;
    padding: 8px 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-learn-more:hover {
        background: #fff;
        color: #000;
    }



@media (max-width: 991px) {
    .faq-content-wrapper {
        flex-direction: column;
    }

    .brand-filter-sidebar {
        width: 100%;
        margin-bottom: 40px;
    }

    .learn-more-cards {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {

    .faq-content-wrapper {
        display: none !important;
    }

    .faq-mobile-wrapper {
        display: block !important;
    }

    .banner_caption_text{
        font-size:22px;
    }

    .faq_introText {
        padding-top: 55px;
    }

    .faq-demo-container {
        padding: 40px 0 4px 0;
    }
    .step_section_padding{
        padding-top:20px;
        padding-bottom:20px;
    }

    .mobile-brand-list {
        max-height: 415px;
        overflow-y: auto;
    }

    .mobile-brand-list::-webkit-scrollbar {
        width: 5px;
        background-color: #ebebeb;
    }

    .mobile-brand-list::-webkit-scrollbar-track {
        background-color: #ebebeb;
    }

    .mobile-brand-list::-webkit-scrollbar-thumb {
        background: #cccccc;
        border-radius: 10px;
    }
}




/* Mobile FAQ View Styles */
.faq-mobile-wrapper {
    display: none;
}



.mobile-brand-filter-block {
    margin-bottom: 50px;
}

    .mobile-brand-filter-block .mobile-faq-category-toggle{
        justify-content:center;
        font-size:18px;
    }

    .mobile-faq-category-block {
        margin-bottom: 16px;
    }

    .mobile-faq-category-block .mobile-faq-category-toggle {
        font-size: 16px;
    }

.mobile-faq-category-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: #fff;
    border: 1px solid #f0f0f0;
    box-shadow: 0px 0px 5px 0px rgba(123, 123, 123, 0.26);
    margin-bottom: 4px;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
}

    .mobile-faq-category-toggle span {
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }

    .mobile-faq-category-toggle:hover {
        color: #222;
    }

    .mobile-faq-category-toggle i {
        flex-shrink: 0;
        width: 24px;
        text-align: center;
        color: #222;
        transition: transform 0.3s ease;
        font-size: 14px;
    }

.mobile-faq-category-content {
    display: none;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
}

.mobile-brand-filter-block .mobile-faq-category-content {
    box-shadow: 0px 0px 5px 0px rgba(123, 123, 123, 0.6);
}

.mobile-faq-questions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 15px;
}

    .mobile-faq-questions-list li {
        border-bottom: none;
    }

.mobile-faq-item-container {
    margin-bottom: 15px;
    background-color: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 2px;
    box-shadow: 0px 0px 5px 0px rgba(123, 123, 123, 0.26);
}

.mobile-faq-question-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    color: #222;
    background-color: transparent;
    border: none;
    box-shadow: none;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

    .mobile-faq-question-item:hover {
        color: #222;
    }

    .mobile-faq-question-item span {
        font-size: 14px;
        font-weight: 400;
        color: #333;
        line-height: 1.5;
        flex: 1;
        min-width: 0;
    }

.mobile-faq-answer-block .faq-answer-text{
    font-size:12px;
}

.mobile-faq-question-item i {
    flex-shrink: 0;
    width: 24px;
    text-align: center;
    margin-top: 2px;
    color: #111;
    font-size: 13px;
    font-weight: bold;
}

.mobile-faq-answer-block {
    display: none;
    padding: 0;
    background-color: transparent;
}

.mobile-brand-list {
    list-style: none;
    padding: 20px;
    margin: 0;
}

    .mobile-brand-list li {
        padding: 4px 0;
        /*border-bottom: 1px solid #f9f9f9;*/
        font-size: 14px;
    }

        .mobile-brand-list li:last-child {
            border-bottom: none;
        }

    .mobile-brand-list label {
        display: flex;
        align-items: center;
        cursor: pointer;
        margin: 0;
        color: #444;
    }

    .mobile-brand-list input[type="radio"] {
        display: none;
    }

    .mobile-brand-list input[type="radio"]:checked + .radio-marker {
        border-color: #e3b564!important;
    }

    .mobile-brand-list input[type="radio"]:checked + .radio-marker::after {
        display: block;
    }
