    @font-face {
        font-family: 'Montserrat';
        src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
        font-weight: 100 900;
        font-style: normal;
    }

    @font-face {
        font-family: 'Montserrat';
        src: url('../fonts/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
        font-weight: 100 900;
        font-style: italic;
    }

    :root {
        /* Colors */
        --color-primary: #00C9FF;
        --color-gradient-start: #00C9FF;
        --color-gradient-end: #92FE9D;
        --color-gradient-purple: #9A69EA;
        --color-accent-orange: #FF7F50;
        --color-text-primary: #212121;
        --color-text-secondary: #666666;
        --color-text-light: #999999;
        --color-white: #FFFFFF;
        --color-bg-section: #FAFAFA;
        --color-border: #E0E0E0;
        --color-shadow: rgba(0, 0, 0, 0.1);
        --color-shadow-hover: rgba(0, 0, 0, 0.15);


        --color-chip-adults: #96CCD4;
        --color-chip-kids: #D2691E;


        --font-family: 'Montserrat', sans-serif;

        --font-size-xs: 0.75rem;
        --font-size-sm: 0.875rem;
        --font-size-base: 1rem;
        --font-size-lg: 1.125rem;
        --font-size-xl: 1.25rem;
        --font-size-2xl: 1.5rem;
        --font-size-3xl: 1.875rem;
        --font-size-4xl: 2.25rem;
        --font-size-5xl: 3rem;
        --font-size-6xl: 3.75rem;

        --font-weight-normal: 400;
        --font-weight-medium: 500;
        --font-weight-semibold: 600;
        --font-weight-bold: 700;

        /* Spacing */
        --spacing-xs: 4px;
        --spacing-sm: 8px;
        --spacing-md: 16px;
        --spacing-lg: 24px;
        --spacing-xl: 32px;
        --spacing-2xl: 48px;
        --spacing-3xl: 64px;
        --spacing-4xl: 96px;
        --spacing-5xl: 128px;


        --container-width: 1200px;
        --header-height: 80px;
        --border-radius-sm: 4px;
        --border-radius-md: 16px;
        --border-radius-lg: 24px;
        --border-radius-full: 9999px;

        --transition-fast: 0.2s ease;
        --transition-normal: 0.3s ease;
    }


    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html,
    body {
        overflow-x: hidden;
        width: 100%;
    }

    body {
        font-family: var(--font-family);
        color: var(--color-text-primary);
        line-height: 1.5;
        background-color: var(--color-bg-section);
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: color var(--transition-fast);
    }

    ul {
        list-style: none;
    }

    img {
        max-width: 100%;
        display: block;
    }

    button {
        cursor: pointer;
        border: none;
        background: none;
        font-family: inherit;
    }

    .container {
        width: 100%;
        max-width: var(--container-width);
        margin: 0 auto;
        padding: 0 var(--spacing-lg);
    }

    .section {
        padding: var(--spacing-3xl) 0;
    }

    .section-title {
        font-size: var(--font-size-3xl);
        font-weight: var(--font-weight-bold);
        margin-bottom: var(--spacing-xl);
        color: var(--color-text-primary);
    }

    .text-center {
        text-align: center;
    }

    /*  Header  */
    .header {
        background-color: var(--color-white);
        box-shadow: 0 2px 10px var(--color-shadow);
        padding: var(--spacing-md) 0;
        position: sticky;
        top: 0;
        z-index: 9999;
    }

    .header__container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header__left {
        display: flex;
        align-items: center;
        gap: var(--spacing-lg);
    }

    .header__logo {
        height: 76px;
        width: auto;
    }

    .header__chips {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-xs);
    }

    .chip {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: var(--spacing-xs) var(--spacing-md);
        border-radius: var(--border-radius-full);
        font-size: var(--font-size-xs);
        font-weight: var(--font-weight-medium);
        transition: all var(--transition-fast);
        white-space: nowrap;
    }

    .chip--adults {
        background-color: var(--color-white);
        border: 1px solid var(--color-chip-adults);
        color: var(--color-chip-adults);
    }

    .chip--adults:hover {
        background-color: var(--color-chip-adults);
        color: var(--color-white);
    }

    .chip--kids {
        background-color: var(--color-white);
        border: 1px solid var(--color-chip-kids);
        color: var(--color-chip-kids);
    }

    .chip--kids:hover {
        background-color: var(--color-chip-kids);
        color: var(--color-white);
    }

    .chip--apply {
        background-color: var(--color-chip-adults);
        border: 1px solid var(--color-chip-adults);
        color: var(--color-white);
    }

    .chip--apply:hover {
        background-color: #1F90B3;
        border-color: #1F90B3;
    }

    .header__nav {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .nav__list {
        display: flex;
        gap: var(--spacing-xl);
    }

    .nav__link {
        font-size: var(--font-size-base);
        font-weight: var(--font-weight-medium);
        color: var(--color-text-primary);
    }

    .nav__link:hover {
        color: var(--color-primary);
    }

    .header__right {
        display: flex;
        align-items: center;
        gap: var(--spacing-md);
    }

    .lang-switcher {
        position: relative;
    }

    .lang-switcher__btn {
        display: flex;
        align-items: center;
        gap: 4px;
        padding: var(--spacing-xs) var(--spacing-md);
        background-color: var(--color-white);
        border: 1px solid var(--color-chip-adults);
        color: var(--color-chip-adults);
        border-radius: var(--border-radius-full);
        font-size: var(--font-size-sm);
        font-weight: var(--font-weight-medium);
        min-width: 60px;
    }

    .lang-switcher__btn:hover {
        background-color: var(--color-chip-adults);
        color: var(--color-white);
    }

    .lang-switcher__dropdown {
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--color-white);
        border: 1px solid var(--color-border);
        border-radius: var(--border-radius-md);
        box-shadow: 0 4px 12px var(--color-shadow);
        padding: var(--spacing-xs) 0;
        display: none;
        min-width: 100%;
        z-index: 1001;
    }

    .lang-switcher__dropdown.active {
        display: block;
    }

    .lang-switcher__option {
        display: block;
        padding: var(--spacing-xs) var(--spacing-md);
        color: var(--color-text-primary);
        font-size: var(--font-size-sm);
    }

    .lang-switcher__option:hover {
        background-color: var(--color-bg-section);
        color: var(--color-primary);
    }

    .header__menu-toggle {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
    }

    .header__menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--color-text-primary);
        border-radius: 2px;
    }

    /* Mobile Menu */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-white);
        box-shadow: 2px 0 10px var(--color-shadow);
        z-index: 10000;
        transition: left var(--transition-normal);
        padding: 80px 24px 40px;
        overflow-y: auto;
    }

    .mobile-menu.active {
        left: 0;
    }

    .mobile-menu__content {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .mobile-menu__content .nav__list {
        flex-direction: column;
        gap: 20px;
    }

    .mobile-menu__content .header__chips {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .mobile-menu__content .chip {
        width: 100%;
    }

    /* Footer */
    .footer {
        background-color: var(--color-white);
        padding: 80px 0 24px;
        border-top: 1px solid #F0F0F0;
    }

    .footer__container {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr 1.5fr;
        gap: 60px;
        margin-bottom: 60px;
    }

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

    .footer__logo-link {
        display: inline-block;
        margin-bottom: 24px;
    }

    .footer__logo {
        width: 140px;
        height: auto;
    }

    .footer__desc {
        color: var(--color-text-secondary);
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 24px;
        max-width: 460px;
        text-wrap: balance;
    }

    .footer__socials {
        display: flex;
        gap: 12px;
    }

    .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #F0F4F8;
        transition: all 0.3s ease;
    }

    .social-link img {
        width: 18px;
        height: 18px;
        filter: grayscale(100%);
        opacity: 0.6;
        transition: all 0.3s ease;
    }

    .social-link:hover {
        background-color: var(--color-primary);
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0, 201, 255, 0.25);
    }

    .social-link:hover img {
        filter: none;
        opacity: 1;
        filter: brightness(0) invert(1);
    }

    .footer__title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 24px;
        color: var(--color-text-primary);
    }

    .footer__links {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .footer__links a {
        color: var(--color-text-secondary);
        font-size: 15px;
        font-weight: 500;
        transition: all 0.2s ease;
        display: inline-block;
    }

    .footer__links a:hover {
        color: var(--color-primary);
        transform: translateX(5px);
    }

    .footer__subscribe-box {
        display: flex;
        align-items: center;
        background-color: #F8F9FB;
        border: 1px solid #E1E4E8;
        border-radius: 50px;
        padding: 6px;
        margin-top: 10px;
        transition: all 0.3s ease;
        width: 100%;
    }

    .footer__subscribe-box:focus-within {
        border-color: var(--color-primary);
        background-color: #fff;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .footer__input {
        flex: 1;
        border: none;
        background: transparent;
        padding: 12px 20px;
        font-size: 14px;
        color: var(--color-text-primary);
        outline: none;
        font-family: inherit;
        min-width: 0;
    }

    .footer__input::placeholder {
        color: #9EA6B5;
    }

    .footer__btn {
        border-radius: 40px;
        padding: 12px 32px;
        font-size: 14px;
        font-weight: 600;
        margin: 0;
        flex-shrink: 0;
        box-shadow: 0 4px 10px rgba(0, 201, 255, 0.2);
    }

    .footer__btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 14px rgba(0, 201, 255, 0.3);
    }

    .footer__bottom {
        border-top: 1px solid #EEEEEE;
        padding-top: 24px;
        text-align: center;
        color: #999;
        font-size: 13px;
    }


    @media (max-width: 1024px) {
        :root {
            --font-size-5xl: 2.25rem;
            --font-size-6xl: 2.25rem;
            --spacing-3xl: 48px;
        }

        .header__logo {
            height: 50px;
        }

        .header__nav,
        .header__chips {
            display: none;
        }

        .header__menu-toggle {
            display: flex;
        }

        .header__container {
            justify-content: space-between;
            padding: 0 20px;
        }

        .nav__list {
            gap: var(--spacing-md);
        }

        .nav__link {
            font-size: var(--font-size-sm);
        }

        .footer__container {
            grid-template-columns: repeat(2, 1fr);
        }

        .footer__col--newsletter {
            grid-column: span 2;
            max-width: 600px;
        }
    }


    @media (max-width: 767px) {
        :root {
            --font-size-5xl: 1.875rem;
            --font-size-6xl: 3rem;
            --spacing-lg: 16px;
        }

        .header__nav {
            display: none;
        }

        .header__menu-toggle {
            display: flex;
        }

        .header__chips {
            flex-direction: row;
            gap: 4px;
        }

        .chip {
            padding: 2px 8px;
            font-size: 0.65rem;
        }

        .header__logo {
            height: 40px;
        }

        .header__container {
            padding: 0 var(--spacing-md);
        }

        .footer__container {
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: center;
        }

        .footer__col--newsletter {
            grid-column: auto;
            margin: 0 auto;
            max-width: 400px;
            width: 100%;
        }

        .footer__btn {
            width: auto;
            padding: 10px 24px;
        }

        .footer__socials {
            justify-content: center;
        }
    }


    @media (min-width: 768px) and (max-width: 1024px) {
        .footer__container {
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .footer__col--newsletter {
            grid-column: span 2;
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .footer__col--newsletter .footer__desc {
            max-width: 480px;
            margin-left: auto;
            margin-right: auto;
            text-wrap: balance;
        }

        .footer__subscribe-box {
            max-width: 100%;
        }

        .footer__btn {
            width: auto;
        }
    }

    /* NEWS PAGE STYLES */

    .news-section {
        padding: var(--spacing-3xl) 0;
        background-color: #FAFAFA;
        min-height: 80vh;
    }

    .news-layout {
        display: grid;
        grid-template-columns: 320px 1fr;
        gap: 40px;
        align-items: stretch;
    }

    /* Left Sidebar */
    .news-sidebar {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .news-page-title {
        font-size: 48px;
        font-weight: 800;
        color: #000;
        margin-bottom: 40px;
        line-height: 1.1;
    }

    .news-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        flex: 1;
        justify-content: space-between;
    }

    .news-card {
        padding: 24px 0;
        border-bottom: 1px solid #E0E0E0;
        cursor: pointer;
        transition: all var(--transition-fast);
        position: relative;
    }

    .news-card:first-child {
        border-top: 1px solid #E0E0E0;
    }

    .news-card:hover {
        background-color: transparent;
    }

    .news-card.active .news-card__title {
        color: #000;
    }

    .news-card.active {
        opacity: 1;
    }

    .news-card:not(.active) {
        opacity: 0.6;
    }

    .news-card:not(.active):hover {
        opacity: 0.8;
    }

    .news-card__header {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        margin-bottom: 8px;
    }

    .news-card__title {
        font-size: 20px;
        font-weight: 700;
        color: #000;
        margin: 0;
    }

    .news-card__date {
        font-size: 14px;
        color: #999;
        font-weight: 400;
        white-space: nowrap;
        margin-left: 12px;
    }

    .news-card__excerpt {
        font-size: 14px;
        color: #666;
        line-height: 1.5;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Right Detail Panel */
    .news-detail-panel {
        background: var(--color-white);
        border-radius: 24px;
        padding: 40px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
        min-height: 500px;
    }

    .news-detail__inner {
        display: flex;
        gap: 40px;
        height: 100%;
        align-items: center;
    }

    .news-detail__text-col {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .news-detail__content {
        font-size: 16px;
        line-height: 1.8;
        color: #666;
    }

    .news-detail__content p {
        margin-bottom: 16px;
    }

    .news-detail__image-col {
        flex: 1.2;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .news-detail__image-wrapper {
        width: 100%;
        height: 400px;
        border-radius: 16px;
        overflow: hidden;
        background-color: #f0f0f0;
    }

    .news-detail__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: opacity 0.3s ease;
    }

    .news-slider-dots {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: auto;
    }

    .news-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #E0E0E0;
        transition: all var(--transition-fast);
        padding: 0;
    }

    .news-dot:hover {
        background-color: #BDBDBD;
    }

    .news-dot.active {
        background-color: #70C3CE;
        transform: scale(1.1);
    }

    /* News Responsive */
    @media (max-width: 1024px) {
        .news-layout {
            grid-template-columns: 280px 1fr;
            gap: 24px;
        }

        .news-detail__inner {
            flex-direction: column-reverse;
            gap: 24px;
        }

        .news-detail__image-wrapper {
            height: 300px;
        }
    }

    @media (max-width: 768px) {
        .news-layout {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .news-sidebar {
            order: 1;
        }

        .news-detail-panel {
            order: 2;
            padding: 24px;
        }

        .news-page-title {
            font-size: 36px;
            margin-bottom: 24px;
        }

        .news-detail__image-wrapper {
            height: 240px;
        }
    }