* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    margin: 0;
    padding: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display+SC:ital,wght@0,400;0,700&display=swap');

:root {
    --color-primary: #062021;
    --footer-background: #245448;
    --gold-yelow: #EAC966;
    --text: #33333A;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f8f9fa;
    color: var(--color-primary);
    overflow-x: hidden;
    overscroll-behavior-y: contain;
}

/* Topbar */
.topbar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background-color: var(--color-primary);
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 999;
}

.topbar__left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.topbar__link {
    color: #FFFFFF;
    text-decoration: none;
    font-family: "Poppins";
    font-weight: 400;
    font-size: 12px;
    transition: color 0.2s ease;
}

.topbar__link:hover {
    color: var(--gold-yelow);
}

.topbar__divider {
    width: 1px;
    height: 20px;
    background-color: var(--gold-yelow);
}

.topbar__right {
    color: var(--gold-yelow);
    font-family: 'Playfair Display SC';
    font-weight: 700;
    font-size: 14px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    background-color: var(--color-primary);
    padding: 0 40px;
    height: 70px;
    z-index: 1000;
}

.navbar__menu,
.navbar__center,
.navbar__language {
    display: flex;
    align-items: center;
}

.navbar__menu,
.navbar__center,
.navbar__language {
    display: flex;
    align-items: center;
}

.navbar__menu-icon {
    width: 16px;
    height: 10px;
}

.navbar__center {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.navbar__center-title {
    color: var(--gold-yelow);
    font-family: 'Playfair Display SC';
    font-weight: 400;
    font-size: 14px;
}

.navbar__center-logo {
    width: 50px;
    height: 50px;
}

.navbar__language {
    position: relative;
    display: flex;
    margin-left: auto;
}

.navbar__language-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #EDEDED;
    border-radius: 4px;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 10px;
    color: var(--text);
    transition: background-color 0.2s ease;
}

.navbar__language-btn:hover {
    background-color: #D0D0D0;
}

.navbar__language-icon {
    width: 12px;
    height: 12px;
}

.navbar__language-current {
    color: var(--text);
    font-family: 'Inter';
    font-weight: 400;
    font-size: 10px;
}

.navbar__language-arrow {
    width: 10px;
    height: 10px;
}

/* Language Menu */
.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #062021CC;
    border-radius: 4px;
    margin-top: 4px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 1001;
    min-width: 150px;
}

.language-menu--open {
    max-height: 300px;
}

.language-menu__list {
    list-style: none;
    padding: 10px 20px;
    margin: 0;
}

.language-menu__item {
    border-bottom: 1px solid #E0E0E0;
    display: flex;
    align-items: center;
    gap: 10px;
}

language-menu__item img {
    width: 24px;
    height: 18px;
}

.language-menu__item:last-child {
    border-bottom: none;
}

.language-menu__link {
    display: block;
    padding: 10px 16px;
    color: #C6C6CC;
    text-decoration: none;
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 18px;
    transition: background-color 0.2s ease;
}

.language-menu__link:hover {
    background-color: var(--footer-background);
}

.m-top-container {
    display: flex;
    flex-direction: column;
    padding-top: 70px;
}

@media (min-width: 1024px) {
    .m-top-container {
        padding-top: 110px;
    }
}

/* Footer */
.footer {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px;
    background-color: var(--footer-background);
}

.footer__text {
    margin-top: 10px;
    color: #EDEDED;
}

.footer__title {
    display: flex;
    gap: 10px;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Playfair Display SC';
    color: var(--gold-yelow);
    text-decoration: none;
    cursor: pointer;
}

.footer__logo {
    width: 70px;
    height: 60px;
}

.footer__content {
    display: flex;
    flex-direction: column;
}

.accordion {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.2s ease;
    padding: 15px 5px;
    border-bottom: 1px solid #ffff;
}

.accordion:hover {
    opacity: 0.8;
}

.accordion__title {
    font-size: 16px;
    font-weight: 500;
    font-family: "Poppins";
    color: #FFFFFF;
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion__content--open {
    max-height: 500px;
}

.accordion__content-text {
    font-size: 14px;
    font-weight: 400;
    font-family: "Poppins";
    padding: 10px 0;
    margin: 0;
    color: #EDEDED;
}

.footer__policies {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 10px 0;
}

.footer__policies-text {
    font-size: 14px;
    font-weight: 500;
    font-family: "Inter";
    color: #FFFFFF;
}

.footer__dropdown-icon {
    width: 10px;
    height: 14px;
}

.footer__social {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__social-container {
    display: flex;
    gap: 30px;
}

.footer__social-link img {
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer__social-link img:hover {
    transform: scale(1.15) translateY(-4px);
    filter: brightness(1.2);
}

/* Desktop Footer */
.footer--desktop {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 40px 80px;
    background-color: var(--footer-background);
}

.footer--desktop .footer__title {
    display: flex;
    gap: 10px;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    cursor: pointer;
}

.footer__logo-link img {
    width: 60px;
    height: 60px;
}

.footer__logo-link h1 {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Playfair Display SC';
    color: var(--gold-yelow);
    margin: 0;
}

.footer__search {
    display: flex;
    gap: 8px;
}

.footer__search-input {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-family: "Poppins";
    font-size: 12px;
    min-width: 200px;
}

.footer__search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer__search-btn {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.footer__search-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.footer__middle {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__column {
    display: flex;
    flex-direction: column;
}

.footer__column-title {
    font-size: 14px;
    font-weight: 600;
    font-family: "Poppins";
    color: #FFFFFF;
    margin: 0 0 15px 0;
}

.footer__column-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__column-link {
    color: #D4D4D4;
    text-decoration: none;
    font-family: "Poppins";
    font-weight: 400;
    font-size: 12px;
    transition: color 0.2s ease;
}

.footer__column-link:hover {
    color: var(--gold-yelow);
}

.footer__social-links {
    display: flex;
    gap: 20px;
}

.footer__social-links a img {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer__social-links a img:hover {
    transform: scale(1.15) translateY(-4px);
    filter: brightness(1.2);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.footer__copyright {
    font-size: 12px;
    font-family: "Poppins";
    color: #D4D4D4;
    margin: 0;
}

.footer__links {
    display: flex;
    gap: 25px;
}

.footer__link {
    color: #D4D4D4;
    text-decoration: none;
    font-family: "Poppins";
    font-weight: 400;
    font-size: 12px;
    transition: color 0.2s ease;
}

.footer__link:hover {
    color: var(--gold-yelow);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--color-primary);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 999;
}

.mobile-menu--open {
    max-height: 900px;
}

.mobile-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu__link {
    display: block;
    padding: 16px 32px;
    color: #FFFFFF;
    text-decoration: none;
    font-family: "Poppins";
    font-weight: 400;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

.mobile-menu__link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu__submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu__submenu--open {
    max-height: 300px;
}

.mobile-menu__submenu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu__submenu-link {
    display: block;
    padding: 12px 32px 12px 48px;
    color: #D4D4D4;
    text-decoration: none;
    font-family: "Poppins";
    font-weight: 400;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.mobile-menu__submenu-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.navbar__menu-btn {
    cursor: pointer;
    width: 20px;
    height: 20px;
}

/* Desktop Menu */
.desktop-menu {
    display: none;
}

.desktop-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
    align-items: center;
}

.desktop-menu__item {
    position: relative;
}

.desktop-menu__link {
    color: #FFFFFF;
    text-decoration: none;
    font-family: "Poppins";
    font-weight: 400;
    font-size: 14px;
    transition: color 0.2s ease;
    display: block;
    padding: 8px 0;
}

.desktop-menu__link:hover {
    color: var(--gold-yelow);
}

.desktop-menu__toggle>.desktop-menu__link::after {
    content: '▼';
    font-size: 10px;
    margin-left: 6px;
}

.desktop-menu__submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    min-width: 160px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 4px;
    z-index: 1002;
    visibility: hidden;
}

.desktop-menu__submenu--open {
    max-height: 300px;
    visibility: visible;
}

.desktop-menu__submenu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.desktop-menu__submenu-item:last-child {
    border-bottom: none;
}

.desktop-menu__submenu-link {
    padding: 10px 16px;
    font-size: 13px;
    color: #D4D4D4;
    display: block;
    text-decoration: none;
}

.desktop-menu__submenu-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--gold-yelow);
}

/* Media Queries */
@media (min-width: 1024px) {
    .topbar {
        display: flex;
    }

    .footer--desktop {
        display: flex;
    }

    .footer {
        display: none;
    }

    .navbar {
        top: 40px;
        margin-top: 0;
    }

    .page {
        margin-top: 110px;
    }

    .desktop-menu {
        display: flex;
        align-items: center;
    }

    .navbar__menu {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .navbar__center {
        display: flex;
    }

    .mobile-menu {
        display: none;
    }
}