body.light-theme .faq-container {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 20px;
    padding: 20px;
    background-color: white;
    color: black;
    padding: 60px 20px;
}

body.light-theme .faq-menu {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 20px;
}

    body.light-theme .faq-menu ul {
        list-style-type: none;
        padding: 0;
    }

    body.light-theme .faq-menu li {
        margin-bottom: 15px;
    }

body.light-theme .faq-category-button {
    background: none;
    border: none;
    color: rgb(64, 64, 64);
    font-size: 1.2em;
    cursor: pointer;
    text-align: left;
    width: 100%;
    padding: 10px 0;
}

    body.light-theme .faq-category-button:hover {
        color: #a92710;
    }

body.light-theme .faq-submenu {
    display: none;
    padding-left: 20px;
}

    body.light-theme .faq-submenu a {
        color: #555;
        text-decoration: none;
        display: block;
        padding: 5px 0;
    }

        body.light-theme .faq-submenu a:hover {
            color: #f0b90b;
        }

body.light-theme .faq-content {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    color: black;
}

body.light-theme .search-bar {
    margin-bottom: 20px;
}

    body.light-theme .search-bar input {
        width: 70%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 1em;
        box-shadow: 0px 2px 4px rgba(0,0,0,0.1);
    }

body.light-theme .category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 40px;
}

body.light-theme .category-card {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.1);
}

    body.light-theme .category-card h3 {
        font-size: 2em;
        color: #333;
        margin-bottom: 10px;
    }

body.light-theme .category-card__header a {
    /*color: #f0b90b;*/
    color: #f0b90b;
}

    body.light-theme .category-card__header a:hover {
        color: #822312;
    }

    body.light-theme .category-card ul {
        list-style-type: none;
        padding: 0;
    }

        body.light-theme .category-card ul li {
            margin-bottom: 5px;
        }

            body.light-theme .category-card ul li a {
                color: #555;
                text-decoration: none;
            }

                body.light-theme .category-card ul li a:hover {
                    color: #822312;
                }

/* body.light-theme .header-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
} */

/* body.light-theme .header-image img {
    width: 25%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
} */

.faq-container {
    display: grid;
    grid-template-columns: 1fr 4fr 1fr;
    gap: 40px;
    padding: 10px;
    background-color: #121212;
    color: white;
}

body.light-theme .faq-container {
    display: grid;
    grid-template-columns: 1fr 4fr 1fr;
    gap: 40px;
    padding: 10px;
    background-color: #d6d6d6;
    color: white;
}

.faq-menu {
    background-color: #333;
    border-radius: 10px;
    padding: 20px;
}

    .faq-menu ul {
        list-style-type: none;
        padding: 0;
    }

    .faq-menu li {
        margin-bottom: 15px;
    }

.faq-category-button {
    background: none;
    border: none;
    color: rgb(155, 155, 155);
    font-size: 1.2em;
    cursor: pointer;
    text-align: left;
    width: 100%;
    padding: 10px 0;
}

    .faq-category-button:hover {
        color: #f0b90b;
    }

.faq-submenu {
    display: none;
    padding-left: 20px;
}

    .faq-submenu a {
        color: #888;
        text-decoration: none;
        display: block;
        padding: 5px 0;
    }

        .faq-submenu a:hover {
            color: #ff6600;
        }

.faq-content {
    background-color: #121212;
    border-radius: 10px;
    padding: 20px;
    color: white;
}

.search-bar {
    margin-bottom: 20px;
    padding-left: 20px;
}

    .search-bar input {
        width: 70%;
        padding: 10px;
        border: 1px solid #555;
        border-radius: 5px;
        font-size: 1em;
        background-color: #1e1e1e;
        color: white;
        box-shadow: 0px 2px 4px rgba(0,0,0,0.1);
        margin-left: -20px;
    }

body.light-theme .search-bar input {
    width: 80%;
    padding: 10px;
    border: 1px solid #848484;
    border-radius: 5px;
    font-size: 1em;
    background-color: #d8d8d8;
    color: rgb(0, 0, 0);
    box-shadow: 0px 2px 4px rgba(0,0,0,0.1);
    margin-left: -20px;
}

    body.light-theme .search-bar input::placeholder {
        color: #2a2a2a;
        opacity: 1;
    }

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
}

.category-card {
    background-color: #121212;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.1);
}
.category-card__header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .category-card h3 {
        font-size: 2em;
        color: #fff;
        margin-bottom: 10px;
    }

.category-card__header a {
    margin-top: 10px;
    font-size: 1.2em;
    /*color: #cacaca;*/
    color: #f0b90b;
}

        .category-card__header a:hover {
            color: #cf322f;
        }

        .category-card__header a::after{
            font-size: 0.9em;
            margin-left: 5px;
            content: ">>";
        }

    .category-card ul {
        list-style-type: none;
        padding: 0;
        line-height: 2em;
        font-size: 1.4em;
    }

        .category-card ul li {
            margin-bottom: 5px;
        }

            .category-card ul li a {
                color: #cacaca;
                text-decoration: none;
            }

                .category-card ul li a:hover {
                    color: #cf322f;
                }

.header-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

    .header-image img {
        width: 25%;
        max-width: 400px;
        height: auto;
        border-radius: 10px;
    }

.l-blocks-list.--faqs {
    /* background: linear-gradient(180deg, #1e1e1e, #333); */
    color: #fff;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 20px 0;
    max-width: 600px;
    margin: 0 auto;
    width: 50%;
}

.faq {
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: #1b1b1b;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 760px;
}

.faq__question {
    display: block;
    font-size: 1.5em;
    font-weight: bold;
    color: #f0b90b;
    text-decoration: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    /* transition: background-color 0.3s ease;
    background-color: #1e1e1e; */
}

    .faq__question:hover {
        /* background-color: #292929; */
        color: #f0b90b;
    }

.faq__answer {
    font-size: 1.2em;
    color: #fff;
    padding: 10px;
    border-top: 1px solid #444;
    margin-top: 10px;
    background-color: transparent;
    border-radius: 5px;
    line-height: 1.6;
}

    .faq__answer a {
        color: #ffb300
    }

    .faq__answer ol {
        padding-left: 20px;
        color: #fff;
    }

        .faq__answer ol li {
            margin-bottom: 10px;
        }

    .faq__answer.collapse {
        display: none;
    }

        .faq__answer.collapse.show {
            display: block;
        }

@media (max-width: 768px) {
    .faq__question {
        font-size: 1.2em;
    }

    .faq__answer {
        font-size: 1em;
    }
}

.breadcrumb {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

    .breadcrumb a {
        text-decoration: none;
        color: #f0b90b;
    }

        .breadcrumb a.current {
            font-weight: bold;
            color: #fff;
        }

/* .faq-container {
    margin-top: 20px;
} */

.faq-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #626262;
}

.faq-question {
    display: block;
    font-size: 20px;
    color: #ddd;
    text-decoration: none;
    padding: 10px 0;
    cursor: pointer;
}

    .faq-question:hover {
        color: #f0b90b;
    }

.faq-item + .faq-item {
    margin-top: 10px;
}

.faq-item .collapse {
    display: none;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    opacity: 0;
}

    .faq__answer.show {
        opacity: 1;
    }

.breadcrumbs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    padding-top: 20px;
}

.container1 {
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
}

body.light-theme .container1 {
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
    background: #d6d6d6;
    display: flex;
    margin-bottom: 0;
    padding-bottom: 0;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    width: 100%;
    max-width: 1200px;
    padding: 10px 20px;
    box-sizing: border-box;
    text-align: left;
    font-size: 1.1em;
    color: #f0b90b;
    margin-bottom: 20px;
}

.l-blocks-list.--faqs {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    box-sizing: border-box;
}

body.light-theme .l-blocks-list.--faqs {
    /* background: linear-gradient(180deg, #d6d6d6, #cfcdcd); */
    color: #000;
    font-family: 'Arial', sans-serif;
    margin: 0;
    /* padding: 20px 0; */
    max-width: 1200px;
    margin: 0 auto;
}

body.light-theme .faq {
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: #ffffff;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body.light-theme .faq__question {
    display: block;
    font-size: 1.5em;
    font-weight: bold;
    color: #484848;
    text-decoration: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    /* transition: background-color 0.3s ease;
    background-color: #f2f2f2; */
}

    body.light-theme .faq__question:hover {
        color: #ff5100;
    }

body.light-theme .faq__answer {
    font-size: 1.2em;
    color: #444;
    padding: 10px;
    border-top: 1px solid #ddd;
    margin-top: 10px;
    background-color: transparent;
    border-radius: 5px;
}

    body.light-theme .faq__answer ol {
        padding-left: 20px;
        color: #000;
    }

        body.light-theme .faq__answer ol li {
            margin-bottom: 10px;
        }

body.light-theme .breadcrumb {
    font-size: 18px;
    margin-bottom: 20px;
    color: #8a2e00;
}

    body.light-theme .breadcrumb a {
        text-decoration: none;
        color: #8a2e00;
    }

        body.light-theme .breadcrumb a.current {
            font-weight: bold;
            color: #000;
        }

.support-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: transparent;
    border: none;
    padding: 0;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

    .support-button img {
        width: 55px;
        height: 55px;
        object-fit: cover;
        border-radius: 50%;
        transition: transform 0.3s ease;
    }

    .support-button:hover img {
        transform: scale(1.1);
    }

@media(max-width: 1550px){
    .category-card h3 {
        font-size: 1.5em !important;
    }

    .category-card ul{
        font-size: 1.2em !important;
    }
}

@media (max-width: 912px) {
    .faq-container {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .faq-menu {
        margin-bottom: 20px;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .faq {
        min-width: auto;
    }
    .faq-container {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 10px;
    }

    .faq-menu,
    .faq-content {
        padding: 15px;
    }

    .faq-category-button {
        font-size: 1em;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .faq-container {
        padding: 5px;
    }

    .faq-menu,
    .faq-content {
        padding: 10px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .faq-category-button {
        font-size: 0.9em;
    }

    .faq__question,
    .faq__answer {
        font-size: 1em;
    }
}

.header-image img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.help-center-title {
    color: #f0b90b;
}

body.light-theme .header-container {
    border-bottom: none;
}

/* .faq-container {
    margin-top: 80px;
} */

body.light-theme {
    background-color: #d6d6d6;
}

/* Styles for search results */
.search-bar {
    position: relative;
    display: flex;
    justify-content: center;
}

.search-results {
    position: absolute;
    top: 100%;
    /*left: 0;*/
    width: 70%;
    max-height: 400px;
    overflow-y: auto;
    background-color: #333;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    overflow-x: hidden;
}

body.light-theme .search-results {
    background-color: #f8f8f8;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.result-item {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #444;
    cursor: pointer;
    transition: background-color 0.2s;
}

body.light-theme .result-item {
    border-bottom: 1px solid #ddd;
}

.result-item:last-child {
    border-bottom: none;
}

.result-item:hover {
    background-color: #444;
}

body.light-theme .result-item:hover {
    background-color: #e9e9e9;
}

.result-icon {
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0b90b;
}

body.light-theme .result-icon {
    color: #a92710;
}

.result-content {
    flex: 1;
    padding-left: 15px;
    min-width: 0;
}

.result-content h3 {
    margin: 0 0 5px;
    font-size: 16px;
    color: #f0b90b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.light-theme .result-content h3 {
    color: #333;
}

.result-content p {
    margin: 0;
    font-size: 14px;
    color: #aaa;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.3;
}

body.light-theme .result-content p {
    color: #666;
}

.no-results {
    padding: 15px;
    text-align: center;
    color: #aaa;
}

body.light-theme .no-results {
    color: #666;
}
.result-icon svg {
    width: 24px;
    height: 24px;
    stroke: #888888;
}
.faq__answer {
    scroll-margin-top: 0;
}