body {
    background-color: var(--color-background);
}

header.header {
    width: 100%;
    height: 65px;
    z-index: 100;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    border-bottom: 1px solid #365575;
}

.header.header .menu-bar {
    grid-column: 2 / 6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: center;
}

.bg-orange {
    background-color: var(--color-orange);
}

.bg-blue {
    background-color: var(--color-blue);
}

.section.hero {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    padding-top: 120px;
    background: linear-gradient(to right, #0B1422 0%, #042D56 100%);
}

.section.hero .hero-inner {
    width: 100%;
    grid-column: 2 / 6;
    margin: 0 auto;
    align-items: center;
    padding-right: 30%;
}

.hero-search-container {
    max-width: 1008px;
}

@media (max-width: 1380px) {
    .section.hero .hero-inner {
        padding-right: 38%;
    }

    .text-support {
        font-size: 52px !important;
    }
}

@media (max-width: 1235px) {
    .right-image img {
        width: 38%;
    }

    .text-support {
        font-size: 52px !important;
    }
}

.visibility-hidden {
    display: none !important;
}

/* Language Selector Styles */
.language-selector {
    position: relative;
    display: inline-block;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: transparent;
    cursor: pointer;
    font-weight: 300;
    font-size: 18px;
    color: #fff;
    transition: all 0.2s ease;
}

.language-arrow {
    transition: transform 0.2s ease;
}

.language-toggle[aria-expanded="true"] .language-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 150px;
    background: white;
    border-radius: 4px;
    list-style: none;
    margin: 4px 0 0 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown li {
    margin: 0;
    padding: 0;
}

.locale-link {
    display: block;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.locale-link:hover {
    background-color: #f5f5f5;
}

.locale-link.current {
    background-color: #e3f2fd;
    color: #1976d2;
    font-weight: 500;
}

.menu-item {
    position: relative;
    margin-right: 24px;
}

.menu-item a {
    color: white;
    text-decoration: none;
    display: block;
    font-size: 16px;
    padding: 0;
    font-weight: normal;
    line-height: 10px;
}

.menu-item a:hover {
    font-weight: normal;
}

.menu-item .active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #FF5500;
    border-radius: 2px;
}

/* FAQ Accordion Styles */
/* FAQ Container - Auto Height with CSS Grid */
#faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

#faq-container>div {
    display: flex;
    flex-direction: column;
    min-height: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* FAQ Accordion Styles - Completely Automatic */
.faq-items li {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.faq-items li .description {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    padding-top: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.faq-items li.active .description {
    /* 
        Since expandable article containers under FAQ sections and on category page are showing the whole article,
        without option to navigate to separate article page, we set a very high max-height here to ensure the full content is visible.
    */
    max-height: 10000px;
    opacity: 1;
    margin-top: 1rem;
    padding-top: 1rem;
}

.faq-items li.active {
    background-color: rgba(10, 116, 239, 0.1);
    border-color: #0A74EF;
}

.faq-items li img {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-items li.active img {
    transform: rotate(180deg);
}

/* Ensure smooth height transitions */
.faq-items {
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer .section-padding {
    grid-column-start: 2;
    grid-column-end: 5;
    justify-self: center;
    align-self: center;
    transform: translateX(20%);
}

iframe#launcher {
    display: none !important;
}

.chatbox-button {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 999998;
    display: inline-flex;
}

.chatbox-button .btn-open-chatbox {
    position: relative;
}

.chatbox-button .chat-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    border-radius: 9999px;
    background-color: #E74C3C;
    color: #FFFFFF;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    box-shadow: 0 0 0 2px #FFFFFF;
    pointer-events: none;
}

.btn-open-chatbox {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    -webkit-tap-highlight-color: transparent;
}

.btn-open-chatbox.expanded {
    height: 47px;
    padding: 0 22px;
    background: #FF722B;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-mask-image: var(--chatbox-button-mask);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-image: var(--chatbox-button-mask);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    overflow: visible;
}

.btn-open-chatbox:hover {
    filter: brightness(0.98);
}

.btn-open-chatbox:active {
    transform: translateY(1px);
}

.btn-open-chatbox:focus-visible {
    outline: 2px solid #FFFFFF;
    outline-offset: 2px;
}

.btn-open-chatbox .chatbox-icon {
    width: 24px;
    height: 24px;
    display: block;
    flex: 0 0 auto;
}

.btn-open-chatbox .chatbox-icon-minimized {
    display: none;
}

.btn-open-chatbox.minimized .chatbox-icon-expanded {
    display: none;
}

.btn-open-chatbox.minimized .chatbox-icon-minimized {
    display: block;
}

.btn-open-chatbox .chatbox-label {
    white-space: nowrap;
}

.btn-open-chatbox.minimized {
    width: auto;
    height: auto;
    min-height: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    --chatbox-button-mask: none;
    -webkit-mask-image: none;
    mask-image: none;
}

.btn-open-chatbox.minimized .chatbox-label {
    display: none;
}

.btn-open-chatbox.minimized .chatbox-icon {
    width: 64px;
    height: 51px;
}

.hidden {
    display: none !important;
}

.chatbox-container {
    display: block;
    width: 376px;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 20px 0px #0B142280;
}

.chatbox-container .chatbox-header {
    background: #8CA3C0;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px 8px 0 0;
}

.chatbox-container .chatbox-header .chatbox-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.chatbox-container .chatbox-header .chatbox-title {
    font-family: Roboto;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 26px;
    color: #fff;
}

.chatbox-container .chatbox-header .chatbox-actions {
    display: flex;
    gap: 16px;
    align-items: end;
}

.chatbox-minimize,
.chatbox-close {
    cursor: pointer;
}

.chatbox-container .chatbox-content {
    padding: 28px 24px;
}

.chatbox-container .chatbox-content .form-control {
    display: block;
    width: 100%;
    margin-bottom: 24px;
}

.chatbox-container .chatbox-content .form-control label {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
    margin-bottom: 16px;
    display: block;
}

.chatbox-container .chatbox-content .form-control select,
.chatbox-container .chatbox-content .form-control input {
    width: 100%;
    height: 40;
    gap: 10px;
    padding-top: 8px;
    padding-right: 16px;
    padding-bottom: 8px;
    padding-left: 16px;
    border-radius: 4px;
    border-width: 1px;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
    background: #EAF0F6;
    border: 1px solid #8CA3C0
}

.chatbox-container .chatbox-content .form-control select {
    padding-right: 16px;
}

.chatbox-container .chatbox-content .btn-blue {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px 15px;
    gap: 10px;
    color: #fff;
    width: 100%;
    height: 44px;
    background: #0A74EF;
    border-radius: 5px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 1;
    cursor: pointer;
}

.section.hero {
    overflow: hidden !important;
}

.animation-on-hover {
    overflow: hidden !important;
}

.animation-on-hover img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    transform: scale(1);
}

.animation-on-hover:hover img {
    transform: scale(1.1);
}

.animation-on-hover-alt img {
    object-fit: cover;
    transition: transform 0.3s ease;
    transform: scale(1);
}

.animation-on-hover-alt:hover img {
    transform: scale(1.1);
}

.animation-on-hover-element,
.animation-on-hover-element-x2 {
    transition: transform 0.3s ease;
    transform: scale(1);
}

.animation-on-hover-element:hover {
    transform: scale(1.02);
}

.animation-on-hover-element-x2:hover {
    transform: scale(1.04);
}

/* Paragraph and list Styling (optimized) */
:is(article, .faq-items) :is(ol, ul, div, p) {
    line-height: 22px;
    margin-bottom: 10px;
    vertical-align: top;
}

:is(article, .faq-items) :is(ol, ul, p):last-child {
    margin-bottom: 0;
}

/* Ordered and Unordered Lists Styling (optimized) */
:is(article, .faq-items) ul { list-style: disc; }
:is(article, .faq-items) ol { list-style: decimal; }

:is(article, .faq-items) :is(ul, ol) {
    margin-left: 0;
    padding-left: 0;
}

:is(article, .faq-items) :is(ul, ol) > li {
    display: list-item;
    list-style: inherit;
    list-style-position: inside;
    white-space: normal;
}

:is(article, .faq-items) :is(ul, ol) > li > * {
    display: inline-block;
    white-space: normal;
}

