* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}

html {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: #f5f5f5;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

nav {
    background-color: transparent;
    padding: 3rem 2rem 1rem 12rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    transition: background-color 0.3s ease, position 0.3s ease;
}

nav > .menu {
    margin-left: 1.5rem;
}

nav > .menu + div {
    margin-left: auto;
}

nav.scrolled {
    background-color: #ffffff;
    position: fixed;
    padding-top: 1rem;
    padding-left: 12rem;
}

nav.scrolled .logo svg path {
    fill: #000;
}

nav.scrolled .menu-item {
    color: #000;
}

nav.scrolled .menu-item::after {
    background-color: #000;
}

nav.scrolled .menu-item-dropdown .menu-item::after {
    background-color: #000;
}

nav.scrolled .burger-menu-btn {
    color: #000;
}

nav.scrolled .ticketing-button {
    background-color: #112846;
    color: white;
}

.burger-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #fff;
    margin-right: 1rem;
    z-index: 1001;
}

.burger-menu-btn svg {
    width: 24px;
    height: 24px;
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.logo svg {
    height: 43px;
    width: auto;
}

.logo svg path {
    fill: #fff;
}

.menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

@media (min-width: 1025px) {
    .menu > li[style*="display: none"] {
        display: none !important;
        margin: 0 !important;
        width: 0 !important;
        padding: 0 !important;
    }
    .menu > li:last-child {
        margin-left: -1.5rem;
    }
}

.menu-item {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    transition: opacity 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
}

.menu-item:hover {
    opacity: 0.7;
}

.menu-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.menu-item:hover::after {
    width: 100%;
}

.ticketing-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #112846;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border-radius: 25px;
    transition: background-color 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
}

/* Увеличиваем расстояние для французской версии (Billetterie) */
html[lang="fr"] .menu > li:last-child,
html[lang="FR"] .menu > li:last-child {
    margin-left: 0.5rem;
}


.ticketing-button:hover {
    background-color: #0d1f35;
    opacity: 1;
}

.ticket-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transform: scaleX(-1) rotate(390deg);
}

.menu-item-dropdown {
    position: relative;
}

.menu-item-dropdown .menu-item {
    cursor: pointer;
    position: relative;
}

.menu-item-dropdown .menu-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.menu-item-dropdown:hover .menu-item::after {
    width: 100%;
}

.menu-item-dropdown:hover .menu-item {
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
}

.menu-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #000;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: background-color 0.2s ease;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: 1px solid #CCCBCB;
    margin: 0;
}

.dropdown-item:not(:last-child) {
    border-bottom: 2px solid #CCCBCB;
}

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

.dropdown-menu li {
    border-bottom: 1px solid #CCCBCB;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #112846;
    color: #ffffff;
}





.user-icon svg path {
    fill: white;
}

.user-icon:hover {
    background-color: #333;
}

.user-icon svg {
    width: 20px;
    height: 24px;
}

.flag-icon-dropdown {
    position: relative;
    cursor: pointer;
    margin-right: 2rem;
}

.flag-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    overflow: hidden;
}

.flag-icon svg {
    width: 100%;
    height: 100%;
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    margin: 0;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.language-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
}

.flag-icon-dropdown:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.language-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #000;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.language-item:hover {
    background-color: #f5f5f5;
}

.language-flag {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-flag svg {
    width: 100%;
    height: 100%;
}

.language-flag-fr svg {
    transform: rotate(90deg);
}

.language-divider {
    height: 1px;
    background-color: #e5e5e5;
    margin: 0.25rem 0;
}

@media (max-width: 768px) {
    nav {
        flex-wrap: wrap;
        padding: 1rem;
        gap: 0;
    }

    .burger-menu-btn {
        margin-right: 0;
    }

    .menu {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .menu-item {
        font-size: 0.9rem;
    }

    .logo svg {
        height: 35px;
    }
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    box-sizing: border-box;
    margin-top: 0;
    z-index: 1;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide:not(.slide-video)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-video {
    position: relative;
}

.slide-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.slide-video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.slide-video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: left;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    padding-bottom: 8rem;
    opacity: 0;
    transition: opacity 0.8s ease-in-out 0.3s;
}

.slide.active .slide-content {
    opacity: 1;
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 700;
    padding-left: 8rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.slide-description {
    font-size: 1rem;
    padding-left: 8rem;
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    max-width: 700px;
}

.slide-logos {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    padding-bottom: 8rem;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.8s ease-in-out 0.3s;
}

.slide.active .slide-logos {
    opacity: 1;
}

.logo-img {
    height: auto;
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
    filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.5));
}

.slider-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 10;
    flex-wrap: wrap;
}

.control-btn {
    background-color: transparent;
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: inherit;
    text-decoration: none;
    border-radius: 25px;
}

.control-btn:hover {
    opacity: 0.8;
}

.control-btn.active {
    background-color: transparent;
    color: white;
    border: none;
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }

    .slider-controls {
        padding: 1.5rem 1rem;
        gap: 0.5rem;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: auto;
        scrollbar-color: rgba(255, 255, 255, 0.8) rgba(255, 255, 255, 0.1);
    }

    .slider-controls::-webkit-scrollbar {
        height: 4px;
    }

    .slider-controls::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }

    .slider-controls::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.8);
        border-radius: 2px;
    }

    .slider-controls::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.9);
    }

    .control-btn {
        padding: 0.6rem 0.6rem;
        font-size: 0.8rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .slide-content {
        padding: 1.5rem;
        padding-bottom: 10rem;
        max-width: 90%;
    }

    .slide-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }

    .slide-description {
        font-size: 1.1rem;
    }

    .slide-logos {
        padding: 1.5rem;
        padding-bottom: 6rem;
        gap: 1rem;
        margin-top: 4rem;
    }

    .logo-img {
        max-width: 40px;
        max-height: 18px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }

    .slider-controls {
        padding: 1rem 0.5rem;
        gap: 0.4rem;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: auto;
        scrollbar-color: rgba(255, 255, 255, 0.8) rgba(255, 255, 255, 0.1);
    }

    .slider-controls::-webkit-scrollbar {
        height: 4px;
    }

    .slider-controls::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }

    .slider-controls::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.8);
        border-radius: 2px;
    }

    .slider-controls::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.9);
    }

    .control-btn {
        padding: 0.5rem 0.5rem;
        font-size: 0.75rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .slide-content {
        padding: 1rem;
        padding-bottom: 8rem;
        max-width: 95%;
    }

    .slide-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
        letter-spacing: 0.5px;
        padding-left: 0;
    }

    .slide-description {
        font-size: 0.9rem;
        line-height: 1.5;
        padding-left: 0;
    }

    .slide-logos {
        padding: 1rem;
        padding-bottom: 5rem;
        gap: 0.8rem;
        margin-top: 3rem;
    }

    .logo-img {
        max-width: 35px;
        max-height: 15px;
    }
}

/* Explore Section */
.explore-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    background-image: url('assets/images/backgrounds/Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    gap: 2rem;
    box-sizing: border-box;
    overflow-x: hidden;
}

.explore-content {
    flex: 0 0 50%;
    padding-left: 4rem;
    color: white;
}

.explore-map {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 4rem;
}

.map-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.explore-title {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: white;
}

.explore-text {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: white;
}

.explore-location {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    color: white;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .explore-section {
        flex-direction: column;
        gap: 3rem;
    }

    .explore-content {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .explore-map {
        flex: 0 0 100%;
        padding-right: 2rem;
        padding-left: 2rem;
    }

    .explore-title {
        font-size: 2.5rem;
    }

    .explore-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .explore-section {
        min-height: 80vh;
        padding: 3rem 1.5rem;
        flex-direction: column;
        gap: 2rem;
    }

    .explore-content {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .explore-map {
        flex: 0 0 100%;
        padding-right: 0;
        padding-left: 0;
    }

    .explore-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .explore-text {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .explore-location {
        font-size: 1rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .explore-section {
        min-height: 70vh;
        padding: 2rem 1rem;
        flex-direction: column;
        gap: 1.5rem;
    }

    .explore-content {
        padding-left: 0;
        padding-right: 0;
    }

    .explore-map {
        padding-left: 0;
        padding-right: 0;
    }

    .explore-title {
        font-size: 1.75rem;
        letter-spacing: 1px;
    }

    .explore-text {
        font-size: 0.95rem;
    }

    .explore-location {
        font-size: 0.9rem;
    }
}

/* Pass Section */
.pass-section {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    background-color: #f5f5f5;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-x: hidden;
}

.pass-image {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}

.pass-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pass-content {
    flex: 0 0 50%;
    background-color: #e8e8e8;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pass-logo {
    margin-bottom: 2rem;
}

.mbu-logo {
    max-width: 300px;
    height: auto;
}

.pass-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: #000;
    line-height: 1.2;
}

.pass-description {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #333;
}

.pass-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stats-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    min-width: 80px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 400;
    color: #555;
    text-transform: lowercase;
}

.pass-button {
    background-color: #000;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    font-family: 'Raleway', sans-serif;
    border-radius: 25px;
}

.pass-button:hover {
    background-color: #333;
}

@media (max-width: 1024px) {
    .pass-section {
        flex-direction: column;
    }

    .pass-image {
        flex: 0 0 50vh;
    }

    .pass-content {
        flex: 0 0 auto;
        padding: 3rem 2rem;
    }

    .pass-title {
        font-size: 2rem;
    }

    .pass-stats {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .pass-content {
        padding: 2rem 1.5rem;
    }

    .pass-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .pass-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .pass-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .stats-column {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.25rem;
        min-width: 60px;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .mbu-logo {
        max-width: 250px;
    }

    .pass-image {
        display: none;
    }
}

@media (max-width: 480px) {
    .pass-content {
        padding: 1.5rem 1rem;
    }

    .pass-title {
        font-size: 1.5rem;
    }

    .pass-description {
        font-size: 0.95rem;
    }

    .stat-item {
        flex-wrap: wrap;
    }

    .stat-icon {
        width: 30px;
        height: 30px;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .pass-button {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .pass-image {
        display: none;
    }
}

/* Info Section */
.info-section {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
    overflow-x: hidden;
}

.info-panel {
    flex: 0 0 50%;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

.responsibilities-panel {
    background: linear-gradient(to bottom, #f5f5f5, #ffffff);
    color: #000;
}

.app-panel {
    background-color: #1a3a5c;
    color: white;
}

.panel-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: #1a3a5c;
}

.panel-title.white {
    color: white;
}

.panel-content {
    flex: 1;
    margin-bottom: 2rem;
}

.panel-text {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.panel-text.white {
    color: white;
}

.panel-text.italic {
    font-style: italic;
}

.panel-text strong {
    font-weight: 700;
}

.panel-button {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 25px;
    align-self: flex-start;
    font-family: 'Raleway', sans-serif;
}

.panel-button:hover {
    background-color: #357abd;
}

.hikers-illustration {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 200px;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 150'%3E%3Cpath d='M20 120 L30 100 L40 110 L50 90 L60 100 L70 80 L80 90 L90 70 L100 80 L110 60 L120 70 L130 50 L140 60 L150 40 L160 50 L170 30 L180 40' stroke='%23cccccc' stroke-width='2' fill='none'/%3E%3Ccircle cx='30' cy='100' r='8' fill='%23ffffff' stroke='%23cccccc' stroke-width='2'/%3E%3Ccircle cx='80' cy='90' r='8' fill='%23ffffff' stroke='%23cccccc' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
}

.app-panel-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    flex: 1;
}

.app-text-section {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
}

.app-screenshots {
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.download-btn:hover {
    opacity: 0.8;
}

.store-logo {
    height: 50px;
    width: auto;
}

.app-logo {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-start;
}

.footer-logo {
    max-width: 250px;
    height: auto;
    filter: brightness(0) invert(1);
}

@media (max-width: 1024px) {
    .info-section {
        flex-direction: column;
    }

    .info-panel {
        flex: 0 0 auto;
        padding: 3rem 2rem;
    }

    .panel-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .info-panel {
        padding: 2rem 1.5rem;
    }

    .panel-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .panel-text {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .app-panel-content {
        flex-direction: column;
        gap: 2rem;
    }

    .app-text-section {
        flex: 0 0 auto;
    }

    .app-screenshots {
        flex: 0 0 auto;
        order: -1;
    }

    .app-image {
        max-height: 400px;
    }

    .store-logo {
        height: 45px;
    }

    .download-buttons {
        justify-content: center;
    }

    .app-logo {
        justify-content: center;
    }

    .hikers-illustration {
        width: 150px;
        height: 100px;
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .info-panel {
        padding: 1.5rem 1rem;
    }

    .panel-title {
        font-size: 1.5rem;
    }

    .panel-text {
        font-size: 0.95rem;
    }

    .panel-button {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .app-panel-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .app-screenshots {
        order: -1;
    }

    .app-image {
        max-height: 300px;
    }

    .store-logo {
        height: 40px;
    }

    .download-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
    }

    .app-logo {
        justify-content: center;
    }

    .footer-logo {
        max-width: 200px;
    }

    .hikers-illustration {
        display: none;
    }
}

/* Services Section */
.services-section {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    background-color: #000;
    padding: 4rem 2rem;
    gap: 2rem;
    box-sizing: border-box;
    overflow-x: hidden;
}

.services-column {
    flex: 0 1 auto;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    color: white;
}

.services-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: white;
}

.services-divider {
    width: 100%;
    height: 1px;
    background-color: white;
    margin-bottom: 1.5rem;
}

.rating-stars {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.star {
    color: white;
}

.star.filled {
    color: white;
}

.star.outline {
    opacity: 0.5;
}

.services-text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: white;
    flex: 1;
}

.services-button {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 25px;
    align-self: flex-start;
    font-family: 'Raleway', sans-serif;
}

.services-button:hover {
    background-color: white;
    color: #000;
}

@media (max-width: 1024px) {
    .services-section {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .services-column {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .services-section {
        flex-direction: column;
        padding: 3rem 1.5rem;
        gap: 2.5rem;
    }

    .services-column {
        flex: 0 0 auto;
    }

    .services-title {
        font-size: 1.25rem;
    }

    .services-text {
        font-size: 0.95rem;
    }

    .services-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .services-title {
        font-size: 1.1rem;
    }

    .services-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .services-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Main Footer */
.main-footer {
    background-color: #ffffff;
    padding: 4rem 2rem 2rem;
    color: #000;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    justify-content: space-evenly;
}

.footer-content {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column {
    flex: 0 0 auto;
}

.footer-left {
    max-width: 400px;
    flex: 0 0 400px;
}

.footer-resort-logos {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: center;
    flex-wrap: nowrap;
}

.resort-logo {
    height: auto;
    max-width: 150px;
    max-height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-description {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
}

.newsletter-button {
    background-color: #000;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Raleway', sans-serif;
}

.newsletter-button:hover {
    background-color: #333;
}

.envelope-icon {
    width: 20px;
    height: 20px;
}

.footer-right-group {
    display: flex;
    gap: 0;
    align-items: flex-start;
}

.footer-middle {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 0 0 auto;
    min-width: 200px;
    max-width: 220px;
    margin-right: 0;
    padding-right: 1rem;
}

.footer-right {
    max-width: 300px;
    flex: 0 0 auto;
    margin-left: 0;
    padding-left: 0;
}

.footer-menu-section {
    display: flex;
    flex-direction: column;
}

.footer-menu-title {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    color: #000;
}

.footer-menu-divider {
    width: 100%;
    height: 3px;
    background-color: #000;
    margin-bottom: 1rem;
}

.footer-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #000;
    text-decoration: underline;
}

.footer-right {
    max-width: 300px;
    flex: 0 0 auto;
}

.footer-partners-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: center;
}

.partner-logo {
    height: auto;
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
}


.footer-bottom-divider {
    width: 100%;
    height: 3px;
    background-color: #000;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        gap: 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-left {
        max-width: 100%;
        margin-bottom: 0;
    }

    .footer-right-group {
        margin-top: 0 !important;
        padding-top: 0 !important;
        flex-wrap: wrap;
        width: 100%;
    }

    .footer-column {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
    }

    .footer-left {
        padding-bottom: 0 !important;
    }

    .footer-resort-logos {
        flex-wrap: nowrap;
        gap: 1rem;
    }

    .resort-logo {
        max-width: 120px;
        max-height: 45px;
    }

    .footer-middle {
        max-width: 100%;
        width: 100%;
        margin-right: 0;
        padding-right: 0;
    }

    .footer-column.footer-right {
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        padding-left: 0;
        margin-top: 3rem !important;
    }

    .footer-partners-logos {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .partner-logo {
        max-width: 100%;
        max-height: 50px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-container {
        gap: 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-left {
        margin-bottom: 0;
    }

    .footer-description {
        margin-bottom: 1rem;
    }

    .newsletter-button {
        margin-bottom: 0;
    }

    .footer-right-group {
        margin-top: 0 !important;
        padding-top: 0 !important;
        flex-wrap: wrap;
        width: 100%;
    }

    .footer-column {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
    }

    .footer-left {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }

    .footer-middle {
        gap: 2rem;
        max-width: 100%;
        width: 100%;
        margin-right: 0;
        padding-right: 0;
    }

    .footer-column.footer-right {
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        padding-left: 0;
        margin-top: 3rem !important;
    }

    .footer-partners-logos {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .partner-logo {
        max-width: 100%;
        max-height: 45px;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-resort-logos {
        flex-wrap: nowrap;
        gap: 0.75rem;
    }

    .resort-logo {
        max-width: 100px;
        max-height: 40px;
    }

    .footer-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .newsletter-button {
        width: 100%;
        justify-content: center;
        margin-bottom: 0;
    }

    .footer-container {
        gap: 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-left {
        margin-bottom: 0;
    }

    .newsletter-button {
        margin-bottom: 0;
    }

    .footer-right-group {
        margin-top: 0 !important;
        padding-top: 0 !important;
        flex-direction: column;
        width: 100%;
    }

    .footer-column {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
    }

    .footer-left {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }

    .footer-middle {
        max-width: 100%;
        width: 100%;
        margin-right: 0;
        padding-right: 0;
    }

    .footer-column.footer-right {
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        padding-left: 0;
        margin-top: 3rem !important;
    }

    .footer-partners-logos {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .partner-logo {
        max-width: 100%;
        max-height: 40px;
    }

    .footer-menu-title {
        font-size: 1rem;
    }

    .footer-link {
        font-size: 0.9rem;
    }
}

/* Footer Bottom */
.footer-bottom {
    background-color: #ffffff;
    padding: 2rem 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.footer-bottom-logo {
    flex: 0 0 auto;
}

.footer-logo-image {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer-bottom-text {
    flex: 1;
    text-align: center;
    font-size: 0.9rem;
    color: #333;
    font-weight: 400;
}

.footer-bottom-text p {
    margin: 0;
}

.heart-icon {
    color: #000;
    filter: grayscale(100%) brightness(0);
}

.footer-bottom-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 0 0 auto;
}

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

.social-link-bottom:hover {
    opacity: 0.7;
}

.social-icon-bottom {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .footer-bottom {
        padding: 1.5rem 1.5rem;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-bottom-text {
        order: 2;
    }

    .footer-bottom-social {
        order: 3;
        justify-content: center;
    }

    .footer-bottom-logo {
        order: 1;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        padding: 1rem;
    }

    .footer-bottom-text {
        font-size: 0.85rem;
    }

    .footer-logo-image {
        height: 35px;
    }

    .social-link-bottom {
        width: 32px;
        height: 32px;
    }

    .social-icon-bottom {
        width: 16px;
        height: 16px;
    }
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    max-width: 85%;
    height: 100%;
    background-color: #000;
    z-index: 1999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 2000;
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 3rem 0 2rem 0;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease;
}

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

.mobile-menu-item svg {
    width: 16px;
    height: 16px;
    margin-left: auto;
}

.mobile-menu-item svg:first-child {
    margin-left: 0;
    margin-right: 0.75rem;
}

.mobile-menu-item svg:last-child:not(:first-child) {
    margin-left: auto;
}

/* Mobile Submenu */
.mobile-submenu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    z-index: 2001;
}

.mobile-submenu.active {
    transform: translateX(0);
}

.mobile-submenu-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 2002;
}

.mobile-submenu-close svg {
    width: 24px;
    height: 24px;
}

.mobile-submenu-back {
    position: absolute;
    top: 3.5rem;
    left: 1rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 2002;
}

.mobile-submenu-back svg {
    width: 24px;
    height: 24px;
}

.mobile-submenu-list {
    list-style: none;
    padding: 0;
    margin: 5.5rem 0 0 0;
}

.mobile-submenu-item {
    display: block;
    padding: 1rem 1.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease;
}

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

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1.5rem;
    margin: 2rem 0;
}

.mobile-menu-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-align: left;
}

.mobile-menu-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu-button svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.mobile-menu-languages {
    display: flex;
    gap: 1rem;
    padding: 0 1.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
}

.mobile-language-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 1rem;
}

.mobile-language-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.mobile-language-flag svg {
    width: 100%;
    height: 100%;
}

/* Media queries for mobile menu */
@media (max-width: 1024px) {
    .burger-menu-btn {
        display: block;
        margin-right: 0;
        order: 1;
    }

    .menu {
        display: flex;
        flex-direction: row;
        gap: 0;
        margin-left: auto;
        order: 3;
    }

    .menu > li:not(:last-child) {
        display: none;
    }

    .menu > li:last-child {
        display: block;
    }

    .ticketing-button {
        display: flex !important;
    }

    .flag-icon-dropdown {
        display: none;
    }

    nav {
        gap: 1rem;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

    nav .logo {
        margin: 0;
        flex: 0 0 auto;
        order: 2;
        flex-grow: 1;
        text-align: center;
    }

    nav .menu {
        margin-left: 0;
        flex: 0 0 auto;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem;
        gap: 0.75rem;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

    nav.scrolled {
        padding: 1rem;
        padding-left: 1rem;
    }

    .burger-menu-btn {
        margin-right: 0;
        flex: 0 0 auto;
        order: 1;
    }

    nav .logo {
        margin: 0;
        flex: 0 0 auto;
        order: 2;
        flex-grow: 1;
        text-align: center;
    }

    nav .menu {
        margin-left: 0;
        flex: 0 0 auto;
        order: 3;
    }

    .ticketing-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        white-space: nowrap;
    }

    .ticketing-button .ticket-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

    nav.scrolled {
        padding: 0.75rem 1rem;
    }

    .burger-menu-btn {
        flex: 0 0 auto;
        padding: 0.5rem;
        order: 1;
    }

    nav .logo {
        flex: 0 0 auto;
        order: 2;
        flex-grow: 1;
        text-align: center;
    }

    nav .logo svg {
        height: 30px;
    }

    nav .menu {
        flex: 0 0 auto;
        margin-left: 0;
        order: 3;
    }

    .ticketing-button {
        padding: 0.625rem 1.25rem;
        font-size: 0.95rem;
        white-space: nowrap;
    }

    .ticketing-button .ticket-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 375px) {
    nav {
        padding: 0.75rem;
        gap: 0.5rem;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

    nav.scrolled {
        padding: 0.75rem;
    }

    .burger-menu-btn {
        flex: 0 0 auto;
        padding: 0.5rem;
        order: 1;
    }

    nav .logo {
        flex: 0 0 auto;
        order: 2;
        flex-grow: 1;
        text-align: center;
    }

    nav .logo svg {
        height: 30px;
    }

    nav .menu {
        flex: 0 0 auto;
        margin-left: 0;
        order: 3;
    }

    .ticketing-button {
        padding: 0.625rem 1.25rem;
        font-size: 0.95rem;
        white-space: nowrap;
    }

    .ticketing-button .ticket-icon {
        width: 18px;
        height: 18px;
    }

    .slide-description {
        display: none;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .slide-description {
        display: none;
    }

    .slider-controls {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: auto;
        scrollbar-color: rgba(255, 255, 255, 0.8) rgba(255, 255, 255, 0.1);
    }

    .slider-controls::-webkit-scrollbar {
        height: 4px;
    }

    .slider-controls::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }

    .slider-controls::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.8);
        border-radius: 2px;
    }

    .slider-controls::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.9);
    }

    .control-btn {
        padding: 0.75rem 0.7rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .slide-content {
        padding-bottom: 10rem;
    }

    .slide-logos {
        margin-top: 4rem;
    }

    .logo-img {
        max-width: 90px;
        max-height: 40px;
    }
}

/* News Page Styles */
.news-hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    margin-top: 0;
}

.news-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: brightness(0.6);
}

.news-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem 2rem;
    padding-left: 8rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
}

.news-hero-title {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: white;
    padding-left: 15rem;
}

.news-hero-description {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    color: white;
    padding-left: 15rem;
}

.news-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.news-section-header {
    margin-bottom: 3rem;
}

.news-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.news-section-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.news-nav-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e0e0e0;
}

.news-nav-tab {
    background: none;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-nav-tab:hover {
    color: #000;
}

.news-nav-tab.active {
    color: #000;
    border-bottom-color: #000;
}

.news-see-all-btn {
    padding: 0.75rem 2rem;
    border: 1px solid #000;
    background: transparent;
    color: #000;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-see-all-btn:hover {
    background-color: #000;
    color: #fff;
}

.news-filters {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.filter-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: white;
    color: #000;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn svg {
    width: 16px;
    height: 16px;
}

.filter-btn:hover {
    background-color: #f5f5f5;
}

.filter-btn.active {
    background-color: #112846;
    color: white;
    border-color: #112846;
}

.filter-btn.active[data-filter="theme"] {
    background-color: #4a90e2;
    border-color: #4a90e2;
}

.news-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card {
    background-color: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
}

.news-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.news-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    padding: 1rem;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.news-card-resort {
    background-color: #2F3A47;
    padding: 0.35rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.news-card-resort:hover {
    background-color: #1E1E1E;
}

.news-card-resort svg {
    width: 16px;
    height: 12px;
    flex-shrink: 0;
}

.news-card-theme {
    background-color: #2F3A47;
    padding: 0.35rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.news-card-theme:hover {
    background-color: #1E1E1E;
}

.news-card-content {
    padding: 1.5rem;
    padding-top: 0;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card-date {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-card-description {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.news-card-button {
    background-color: #000;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card-button:hover {
    background-color: #333;
}

@media (max-width: 1024px) {
    .news-hero-title {
        font-size: 2.4rem;
    }

    .news-section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .news-section-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .news-hero-section {
        height: 50vh;
        min-height: 400px;
    }

    .news-hero-content {
        padding: 2rem 1.5rem;
        padding-left: 2rem;
    }

    .news-hero-title {
        font-size: 2rem;
    }

    .news-hero-description {
        font-size: 1rem;
    }

    .news-section {
        padding: 3rem 1.5rem;
    }

    .news-section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .news-section-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .news-nav-tab {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .news-see-all-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }

    .news-filters {
        gap: 1rem;
    }

    .filter-group {
        gap: 0.75rem;
    }

    .filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }

    .news-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .news-card-image-wrapper {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .news-hero-section {
        height: 40vh;
        min-height: 300px;
    }

    .news-hero-content {
        padding: 1.5rem 1rem;
        padding-left: 1rem;
        padding-right: 1rem;
        text-align: left;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .news-hero-title {
        font-size: 1.4rem;
        padding-left: 0;
        margin-bottom: 0.8rem;
        letter-spacing: 1px;
        text-align: left;
    }

    .news-hero-description {
        font-size: 0.85rem;
        line-height: 1.5;
        padding-left: 0;
        text-align: left;
    }

    .news-section {
        padding: 2rem 1rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .news-card-content {
        padding: 1.25rem;
    }

    .news-card-title {
        font-size: 1.25rem;
    }

    .news-card-description {
        font-size: 0.95rem;
    }
}

/* Annual Openings Page Styles */
.openings-hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    margin-top: 0;
}

.openings-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: brightness(0.6);
}

.openings-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem 2rem;
    padding-left: 8rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
}

.openings-hero-title {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: white;
}

.openings-hero-description {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    color: white;
    max-width: 800px;
}

.openings-section {
    padding: 2.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.openings-container {
    width: 100%;
}

.openings-period {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.openings-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    margin-left: 2rem;
    margin-right: 2rem;
}

.openings-table thead {
    background-color: #000;
    color: white;
}

.openings-table th {
    padding: 1rem 0.75rem;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.openings-table th:first-child {
    width: 50%;
}

.openings-table th:nth-child(2),
.openings-table th:nth-child(3) {
    width: 25%;
}

.openings-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.openings-table tbody tr:nth-child(even) {
    background-color: #f5f5f5;
}

.openings-table tbody tr:nth-child(odd) {
    background-color: white;
}

.openings-table td {
    padding: 1rem 0.75rem;
    font-size: 0.95rem;
    color: #000;
    vertical-align: top;
}

.table-area-name {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.status-icon {
    font-size: 1.25rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.status-icon.status-open {
    color: #4caf50;
}

.status-icon.status-closed {
    color: #f44336;
}

.table-area-name div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.table-area-name strong {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
}

.area-description {
    font-size: 0.85rem;
    color: #666;
    font-weight: 400;
}

.openings-footnotes {
    padding: 1.5rem;
    margin-left: 2rem;
    margin-right: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
}

.openings-footnotes p {
    margin-bottom: 0.75rem;
}

.openings-footnotes p:last-child {
    margin-bottom: 0;
}

.openings-footnotes strong {
    font-weight: 700;
    color: #000;
}

@media (max-width: 1024px) {
    .openings-hero-title {
        font-size: 2.4rem;
    }

    .openings-table th,
    .openings-table td {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .openings-hero-section {
        height: 50vh;
        min-height: 400px;
    }

    .openings-hero-content {
        padding: 2rem 1.5rem;
        padding-left: 2rem;
    }

    .openings-hero-title {
        font-size: 2rem;
    }

    .openings-hero-description {
        font-size: 1rem;
    }

    .openings-section {
        padding: 2rem 1.5rem;
    }

    .openings-table {
        display: block;
        overflow-x: auto;
        margin-left: 0;
        margin-right: 0;
        border: 1px solid #e0e0e0;
    }

    .openings-table thead {
        display: none;
    }

    .openings-table tbody {
        display: block;
    }

    .openings-table tbody tr {
        display: block;
        margin-bottom: 1.5rem;
        overflow: hidden;
    }

    .openings-table tbody tr:nth-child(even),
    .openings-table tbody tr:nth-child(odd) {
        background-color: white;
    }

    .openings-table td {
        display: block;
        padding: 1rem;
        
    }

    .openings-table td:last-child {
        border-bottom: none;
    }

    .openings-table td:before {
        content: attr(data-label);
        font-weight: 700;
        text-transform: uppercase;
        display: block;
        margin-bottom: 0.5rem;
        color: #666;
        font-size: 0.85rem;
    }

    .table-area-name {
        flex-direction: column;
        gap: 0.5rem;
    }

    .status-icon {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .openings-hero-section {
        height: 40vh;
        min-height: 300px;
    }

    .openings-hero-content {
        padding: 1.5rem 1rem;
        padding-left: 1rem;
    }

    .openings-hero-title {
        font-size: 1.4rem;
        padding-left: 0;
        margin-bottom: 0.8rem;
        letter-spacing: 1px;
    }

    .openings-hero-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .openings-section {
        padding: 1.5rem 1rem;
    }

    .openings-table {
        margin-left: 0;
        margin-right: 0;
    }

    .openings-footnotes {
        padding: 1.5rem;
        margin-left: 0;
        margin-right: 0;
        font-size: 0.9rem;
    }
}

/* Ski Areas Page Styles */
.ski-areas-hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    margin-top: 0;
}

.ski-areas-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: brightness(0.6);
}

.ski-areas-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 4rem 2rem;
    padding-left: 8rem;
    color: white;
}

.ski-areas-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ski-areas-hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 900px;
    margin-bottom: 2rem;
}

.ski-areas-hero-button {
    padding: 1rem 2rem;
    background-color: transparent;
    border: 1px solid #fff;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 25px;
}

.ski-areas-hero-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Skiing in 3 Countries Section */
.skiing-countries-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.skiing-countries-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 8rem;
    padding-right: 8rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.skiing-countries-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.skiing-countries-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    letter-spacing: 1px;
    margin: 0;
}

.skiing-countries-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.skiing-countries-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skiing-country-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skiing-country-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.skiing-country-button {
    padding: 0.875rem 1.5rem;
    background-color: #1a1a1a;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-family: 'Raleway', sans-serif;
}

.skiing-country-button:hover {
    background-color: #333;
}

.skiing-countries-image {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.skiing-countries-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Reach the Summits Section */
.reach-summits-section {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

.reach-summits-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 8rem;
    padding-right: 8rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.reach-summits-image {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.reach-summits-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reach-summits-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reach-summits-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    letter-spacing: 1px;
    margin: 0;
}

.reach-summits-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.reach-summits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reach-summits-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reach-summits-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.reach-summits-button {
    padding: 0.875rem 1.5rem;
    background-color: #1a1a1a;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-family: 'Raleway', sans-serif;
}

.reach-summits-button:hover {
    background-color: #333;
}

/* Train Experiences Section */
.train-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.train-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 8rem;
    padding-right: 8rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.train-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.train-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    letter-spacing: 1px;
    margin: 0;
}

.train-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.train-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.train-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.train-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.train-button {
    padding: 0.875rem 1.5rem;
    background-color: #1a1a1a;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-family: 'Raleway', sans-serif;
}

.train-button:hover {
    background-color: #333;
}

.train-image {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.train-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.train-video-wrapper {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 0 8rem;
    width: 100%;
}

.train-video-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.train-video-preview {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    cursor: pointer;
    overflow: hidden;
}

.train-video-preview img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.train-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease;
    z-index: 2;
}

.train-video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.train-video-play-btn svg {
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.train-video-iframe {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.train-video-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Styles for Ski Areas Page */
@media (max-width: 1024px) {
    .ski-areas-hero-title {
        font-size: 3rem;
    }

    .ski-areas-hero-description {
        font-size: 1.15rem;
    }

    .skiing-countries-container {
        gap: 3rem;
    }

    .skiing-countries-title {
        font-size: 2rem;
    }

    .reach-summits-section {
        padding: 3rem 1.5rem;
    }

    .reach-summits-container {
        gap: 3rem;
    }

    .reach-summits-title {
        font-size: 2rem;
    }

    .train-section {
        padding: 3rem 1.5rem;
    }

    .train-container {
        gap: 3rem;
    }

    .train-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .ski-areas-hero-section {
        height: 50vh;
        min-height: 400px;
    }

    .ski-areas-hero-content {
        padding: 2rem 1.5rem;
        padding-left: 2rem;
    }

    .ski-areas-hero-title {
        font-size: 2rem;
    }

    .ski-areas-hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .ski-areas-hero-button {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }

    .skiing-countries-section {
        padding: 3rem 1.5rem;
    }

    .skiing-countries-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .skiing-countries-image {
        min-height: 400px;
        order: -1;
    }

    .skiing-countries-title {
        font-size: 1.75rem;
    }

    .skiing-countries-description {
        font-size: 1rem;
    }

    .reach-summits-section {
        padding: 3rem 1.5rem;
    }

    .reach-summits-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .reach-summits-image {
        min-height: 400px;
        order: -1;
    }

    .reach-summits-title {
        font-size: 1.75rem;
    }

    .reach-summits-description {
        font-size: 1rem;
    }

    .train-section {
        padding: 3rem 1.5rem;
    }

    .train-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .train-image {
        min-height: 400px;
        order: -1;
    }

    .train-video-wrapper {
        margin-top: 2.5rem;
        padding: 0 2rem;
    }

    .train-title {
        font-size: 1.75rem;
    }

    .train-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .ski-areas-hero-section {
        height: 40vh;
        min-height: 300px;
    }

    .ski-areas-hero-content {
        padding: 1.5rem 1rem;
        padding-left: 1rem;
    }

    .ski-areas-hero-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
        letter-spacing: 1px;
        padding-left: 0;
    }

    .ski-areas-hero-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    .ski-areas-hero-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .skiing-countries-section {
        padding: 2rem 1rem;
    }

    .skiing-countries-container {
        gap: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .skiing-countries-image {
        min-height: 300px;
    }

    .skiing-countries-title {
        font-size: 1.5rem;
    }

    .skiing-countries-description {
        font-size: 0.95rem;
    }

    .skiing-countries-list {
        gap: 1.25rem;
    }

    .skiing-country-text {
        font-size: 0.95rem;
    }

    .skiing-country-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .reach-summits-section {
        padding: 2rem 1rem;
    }

    .reach-summits-container {
        gap: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .reach-summits-image {
        min-height: 300px;
    }

    .reach-summits-title {
        font-size: 1.5rem;
    }

    .reach-summits-description {
        font-size: 0.95rem;
    }

    .reach-summits-list {
        gap: 1.25rem;
    }

    .reach-summits-text {
        font-size: 0.95rem;
    }

    .reach-summits-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .train-section {
        padding: 2rem 1rem;
    }

    .train-container {
        gap: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .train-image {
        min-height: 300px;
    }

    .train-video-wrapper {
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .train-title {
        font-size: 1.5rem;
    }

    .train-description {
        font-size: 0.95rem;
    }

    .train-list {
        gap: 1.25rem;
    }

    .train-text {
        font-size: 0.95rem;
    }

    .train-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
    }
}

/* Our Passes Page Styles */
.our-passes-hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    margin-top: 0;
}

.our-passes-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: brightness(0.6);
}

.our-passes-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 4rem 2rem;
    padding-left: 8rem;
    color: white;
}

.our-passes-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.our-passes-hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 900px;
}

/* Responsive Styles for Our Passes Page */
@media (max-width: 1024px) {
    .our-passes-hero-title {
        font-size: 2.4rem;
    }

    .our-passes-hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .our-passes-hero-section {
        height: 50vh;
        min-height: 400px;
    }

    .our-passes-hero-content {
        padding: 2rem 1.5rem;
        padding-left: 2rem;
    }

    .our-passes-hero-title {
        font-size: 2rem;
    }

    .our-passes-hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .our-passes-hero-section {
        height: 40vh;
        min-height: 300px;
    }

    .our-passes-hero-content {
        padding: 1.5rem 1rem;
        padding-left: 1rem;
    }

    .our-passes-hero-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
        letter-spacing: 1px;
        padding-left: 0;
    }

    .our-passes-hero-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* 100% Ski Passes Section */
.ski-passes-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.ski-passes-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ski-passes-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ski-passes-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    letter-spacing: 1px;
    margin: 0;
}

.ski-passes-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.ski-passes-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ski-passes-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ski-passes-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.ski-passes-button {
    padding: 0.875rem 1.5rem;
    background-color: #1a1a1a;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-family: 'Raleway', sans-serif;
}

.ski-passes-button:hover {
    background-color: #333;
}

.ski-passes-image {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.ski-passes-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Styles for Ski Passes Section */
@media (max-width: 1024px) {
    .ski-passes-container {
        gap: 3rem;
    }

    .ski-passes-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .ski-passes-section {
        padding: 3rem 1.5rem;
    }

    .ski-passes-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .ski-passes-image {
        min-height: 400px;
        order: -1;
    }

    .ski-passes-title {
        font-size: 1.75rem;
    }

    .ski-passes-description {
        font-size: 1rem;
    }

    .ski-passes-list {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .ski-passes-section {
        padding: 2rem 1rem;
    }

    .ski-passes-container {
        gap: 2rem;
    }

    .ski-passes-image {
        min-height: 300px;
    }

    .ski-passes-title {
        font-size: 1.5rem;
    }

    .ski-passes-description {
        font-size: 0.95rem;
    }

    .ski-passes-list {
        gap: 1.25rem;
    }

    .ski-passes-text {
        font-size: 0.95rem;
    }

    .ski-passes-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
    }
}

/* Pedestrian Stay Pass Section */
.pedestrian-pass-section {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

.pedestrian-pass-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pedestrian-pass-image {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.pedestrian-pass-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pedestrian-pass-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pedestrian-pass-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    letter-spacing: 1px;
    margin: 0;
}

.pedestrian-pass-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.pedestrian-pass-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pedestrian-pass-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pedestrian-pass-group-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.pedestrian-pass-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pedestrian-pass-list li {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    position: relative;
    padding-left: 1.5rem;
}

.pedestrian-pass-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.2rem;
}

.pedestrian-pass-button {
    padding: 0.875rem 1.5rem;
    background-color: #1a1a1a;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-family: 'Raleway', sans-serif;
    margin-top: 1rem;
}

.pedestrian-pass-button:hover {
    background-color: #333;
}

/* Responsive Styles for Pedestrian Pass Section */
@media (max-width: 1024px) {
    .pedestrian-pass-container {
        gap: 3rem;
    }

    .pedestrian-pass-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .pedestrian-pass-section {
        padding: 3rem 1.5rem;
    }

    .pedestrian-pass-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .pedestrian-pass-image {
        min-height: 400px;
        order: -1;
    }

    .pedestrian-pass-title {
        font-size: 1.75rem;
    }

    .pedestrian-pass-description {
        font-size: 1rem;
    }

    .pedestrian-pass-details {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .pedestrian-pass-section {
        padding: 2rem 1rem;
    }

    .pedestrian-pass-container {
        gap: 2rem;
    }

    .pedestrian-pass-image {
        min-height: 300px;
    }

    .pedestrian-pass-title {
        font-size: 1.5rem;
    }

    .pedestrian-pass-description {
        font-size: 0.95rem;
    }

    .pedestrian-pass-group-title {
        font-size: 1rem;
    }

    .pedestrian-pass-list li {
        font-size: 0.95rem;
    }

    .pedestrian-pass-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
    }
}

/* Ski & Visits Safari Section */
.ski-visits-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.ski-visits-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ski-visits-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ski-visits-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    letter-spacing: 1px;
    margin: 0;
}

.ski-visits-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.ski-visits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ski-visits-list li {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    position: relative;
    padding-left: 1.5rem;
}

.ski-visits-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.2rem;
}

.ski-visits-button {
    padding: 0.875rem 1.5rem;
    background-color: #1a1a1a;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-family: 'Raleway', sans-serif;
    margin-top: 1rem;
}

.ski-visits-button:hover {
    background-color: #333;
}

.ski-visits-image {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.ski-visits-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Styles for Ski & Visits Section */
@media (max-width: 1024px) {
    .ski-visits-container {
        gap: 3rem;
    }

    .ski-visits-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .ski-visits-section {
        padding: 3rem 1.5rem;
    }

    .ski-visits-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .ski-visits-image {
        min-height: 400px;
        order: -1;
    }

    .ski-visits-title {
        font-size: 1.75rem;
    }

    .ski-visits-description {
        font-size: 1rem;
    }

    .ski-visits-list {
        gap: 0.875rem;
    }
}

@media (max-width: 480px) {
    .ski-visits-section {
        padding: 2rem 1rem;
    }

    .ski-visits-container {
        gap: 2rem;
    }

    .ski-visits-image {
        min-height: 300px;
    }

    .ski-visits-title {
        font-size: 1.5rem;
    }

    .ski-visits-description {
        font-size: 0.95rem;
    }

    .ski-visits-list li {
        font-size: 0.95rem;
    }

    .ski-visits-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
    }
}

/* RapidCard Section */
.rapidcard-section {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

.rapidcard-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.rapidcard-image {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.rapidcard-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rapidcard-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rapidcard-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    letter-spacing: 1px;
    margin: 0;
}

.rapidcard-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.rapidcard-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.rapidcard-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rapidcard-list li {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    position: relative;
    padding-left: 1.5rem;
}

.rapidcard-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.2rem;
}

.rapidcard-list li strong {
    color: #1a1a1a;
    font-weight: 600;
}

.rapidcard-button {
    padding: 0.875rem 1.5rem;
    background-color: #1a1a1a;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-family: 'Raleway', sans-serif;
    margin-top: 0.5rem;
}

.rapidcard-button:hover {
    background-color: #333;
}

/* Responsive Styles for RapidCard Section */
@media (max-width: 1024px) {
    .rapidcard-container {
        gap: 3rem;
    }

    .rapidcard-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .rapidcard-section {
        padding: 3rem 1.5rem;
    }

    .rapidcard-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .rapidcard-image {
        min-height: 400px;
        order: -1;
    }

    .rapidcard-title {
        font-size: 1.75rem;
    }

    .rapidcard-subtitle {
        font-size: 1.1rem;
    }

    .rapidcard-description {
        font-size: 1rem;
    }

    .rapidcard-list {
        gap: 0.875rem;
    }
}

@media (max-width: 480px) {
    .rapidcard-section {
        padding: 2rem 1rem;
    }

    .rapidcard-container {
        gap: 2rem;
    }

    .rapidcard-image {
        min-height: 300px;
    }

    .rapidcard-title {
        font-size: 1.5rem;
    }

    .rapidcard-subtitle {
        font-size: 1rem;
    }

    .rapidcard-description {
        font-size: 0.95rem;
    }

    .rapidcard-list li {
        font-size: 0.95rem;
    }

    .rapidcard-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
    }
}

/* FAQ Page Styles */
.faq-hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    margin-top: 0;
}

.faq-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: brightness(0.6);
}

.faq-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 4rem 2rem;
    padding-left: 8rem;
    color: white;
}

.faq-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 900px;
}

/* Responsive Styles for FAQ Page */
@media (max-width: 1024px) {
    .faq-hero-title {
        font-size: 2.4rem;
    }

    .faq-hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .faq-hero-section {
        height: 50vh;
        min-height: 400px;
    }

    .faq-hero-content {
        padding: 2rem 1.5rem;
        padding-left: 2rem;
    }

    .faq-hero-title {
        font-size: 2rem;
    }

    .faq-hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-hero-section {
        height: 40vh;
        min-height: 300px;
    }

    .faq-hero-content {
        padding: 1.5rem 1rem;
        padding-left: 1rem;
    }

    .faq-hero-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
        letter-spacing: 1px;
        padding-left: 0;
    }

    .faq-hero-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* Personal Data Page Styles */
.personal-data-hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    margin-top: 0;
}

.personal-data-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.6);
}

.personal-data-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 4rem 2rem;
    padding-left: 8rem;
    color: white;
}

.personal-data-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.personal-data-hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 900px;
}

.personal-data-content-section {
    padding: 4rem 2rem;
    background-color: #fff;
}

.personal-data-container {
    max-width: 1200px;
    margin: 0 auto;
}

.personal-data-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-family: 'Raleway', sans-serif;
}

.personal-data-section-title:first-of-type {
    margin-top: 0;
}

.personal-data-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
    font-family: 'Raleway', sans-serif;
}

.personal-data-list {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-family: 'Raleway', sans-serif;
}

.personal-data-list li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.personal-data-link {
    color: #112846;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.personal-data-link:hover {
    color: #0a1a2e;
}

/* Responsive Styles for Personal Data Page */
@media (max-width: 1024px) {
    .personal-data-hero-title {
        font-size: 2.4rem;
    }

    .personal-data-hero-description {
        font-size: 1rem;
    }

    .personal-data-section-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .personal-data-hero-section {
        height: 50vh;
        min-height: 400px;
    }

    .personal-data-hero-content {
        padding: 2rem 1.5rem;
        padding-left: 2rem;
    }

    .personal-data-hero-title {
        font-size: 2rem;
    }

    .personal-data-hero-description {
        font-size: 1rem;
    }

    .personal-data-content-section {
        padding: 3rem 1.5rem;
    }

    .personal-data-section-title {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1.25rem;
    }

    .personal-data-text {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .personal-data-list {
        margin-left: 1.5rem;
    }

    .personal-data-list li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .personal-data-hero-section {
        height: 40vh;
        min-height: 300px;
    }

    .personal-data-hero-content {
        padding: 1.5rem 1rem;
        padding-left: 1rem;
    }

    .personal-data-hero-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
        letter-spacing: 1px;
    }

    .personal-data-hero-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .personal-data-content-section {
        padding: 2rem 1rem;
    }

    .personal-data-section-title {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .personal-data-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .personal-data-list {
        margin-left: 1.25rem;
    }

    .personal-data-list li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
}

/* Benefits Booklet Hero Section */
.benefits-hero-section {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;
}

.benefits-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.6);
}

.benefits-hero-content {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    text-align: right;
}

.benefits-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Raleway', sans-serif;
}

.benefits-year {
    font-size: 2rem;
    font-weight: 100;
    color: #1a1a1a;
    
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
}

.benefits-download-btn {
    background-color: #F44336;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 100;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.benefits-download-btn:hover {
    background-color: #d32f2f;
}

.benefits-download-btn svg {
    width: 20px;
    height: 20px;
}

/* Benefits Filter Section */
.benefits-filter-section {
    background-color: white;
    padding: 1rem 0;
}

.benefits-filter-container {
    max-width: 1400px;
    margin: 0 10rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.benefits-filter-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #112846;
}

.benefits-filter-label {
    font-size: 1rem;
    font-weight: 700;
    color: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Raleway', sans-serif;
}

.benefits-filter-divider {
    width: 1px;
    height: 24px;
    background-color: currentColor;
}

.benefits-filter-dropdown {
    position: relative;
}

.benefits-filter-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 400;
    color: inherit;
    cursor: pointer;
    padding: 0.5rem 0;
    font-family: 'Raleway', sans-serif;
    transition: opacity 0.3s ease;
}

.benefits-filter-btn:hover {
    opacity: 0.7;
}

.benefits-filter-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.benefits-filter-btn.active svg {
    transform: rotate(180deg);
}

.benefits-filter-right {
    display: flex;
    align-items: center;
    color: #1F3A67;
}

.benefits-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.benefits-search-input {
    padding: 0.3rem 3rem 0.3rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 400;
    color: inherit;
    background-color: white;
    min-width: 250px;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefits-search-input::placeholder {
    color: #1F3A67;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.benefits-search-input:focus {
    outline: none;
    border-color: currentColor;
}

.benefits-search-btn {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    transition: opacity 0.3s ease;
}

.benefits-search-btn:hover {
    opacity: 0.7;
}

.benefits-search-btn svg {
    width: 20px;
    height: 20px;
}

/* Benefits Content Section */
.benefits-content-section {
    background-color: white;
    padding: 4rem 2rem;
}

.benefits-content-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    text-align: center;
}

.benefits-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-transform: none;
    letter-spacing: 0.5px;
    font-family: 'Raleway', sans-serif;
    text-align: center;
}

/* Benefits Intro Section */
.benefits-intro-section {
    margin-bottom: 1rem;
}

.benefits-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Raleway', sans-serif;
    text-align: center;
}

.benefits-intro-note {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    font-style: italic;
    font-family: 'Raleway', sans-serif;
    text-align: center;
}

/* Benefits Offer Section */
.benefits-offer-section {
    margin-bottom: 1rem;
}

.benefits-offer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.benefits-icon-wrapper {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefits-gift-icon {
    width: 24px;
    height: 24px;
}

.benefits-offer-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    flex: 1;
    font-family: 'Raleway', sans-serif;
    text-align: center;
}

/* Benefits How To Section */
.benefits-howto-section {
    margin-bottom: 1rem;
}

.benefits-howto-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    font-family: 'Raleway', sans-serif;
    text-align: center;
}

/* Benefits Practical Section */
.benefits-practical-section {
    margin-bottom: 1rem;
}

.benefits-practical-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.benefits-practical-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
}

.benefits-practical-icon {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefits-practical-icon svg {
    width: 16px;
    height: 16px;
}

.benefits-practical-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    flex: 1;
    font-family: 'Raleway', sans-serif;
    text-align: center;
}

.benefits-link {
    color: #1a1a1a;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.benefits-link:hover {
    color: #E63946;
}

/* Benefits Questions Section */
.benefits-questions-section {
    margin-bottom: 1rem;
}

.benefits-questions-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    font-family: 'Raleway', sans-serif;
    text-align: center;
}

/* Benefits Lost Pass Section */
.benefits-lostpass-section {
    margin-bottom: 1rem;
}

.benefits-lostpass-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    font-family: 'Raleway', sans-serif;
    text-align: center;
}

/* Benefits Help Section */
.benefits-help-section {
    margin-bottom: 1rem;
}

.benefits-help-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
    font-family: 'Raleway', sans-serif;
    text-align: center;
}

.benefits-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.benefits-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: #333;
    font-family: 'Raleway', sans-serif;
}

.benefits-contact-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.benefits-contact-icon svg {
    width: 100%;
    height: 100%;
}

/* Benefits Cards Section */
.benefits-cards-section {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    flex-wrap: wrap;
}

.benefits-card {
    position: relative;
    width: 100%;
    max-width: 320px;
    height: 300px;
    overflow: visible;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    flex: 0 0 auto;
}

.benefits-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.benefits-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.benefits-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.benefits-card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem;
    padding-bottom: 0;
    z-index: 2;
    box-sizing: border-box;
}

.benefits-card-top {
    text-align: left;
}

.benefits-card-title-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.25rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Raleway', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.benefits-card-subtitle {
    font-size: 0.55rem;
    font-weight: 400;
    color: white;
    margin: 0;
    font-family: 'Raleway', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.benefits-card-bottom {
    text-align: left;
    margin-bottom: 2rem;
}

.benefits-card-title-medium {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.25rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Raleway', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.benefits-card-validity {
    font-size: 0.75rem;
    font-weight: 400;
    color: white;
    margin: 0;
    font-family: 'Raleway', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.benefits-card-button {
    background-color: #E63946;
    color: white;
    border: none;
    padding: 0.45rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Raleway', sans-serif;
    align-self: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 3;
    white-space: nowrap;
}

.benefits-card-button:hover {
    background-color: #d32f2f;
}

/* Benefits Access Section */
.benefits-access-section {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 3rem;
}

.benefits-access-btn {
    background-color: #F44336;
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.benefits-access-btn:hover {
    background-color: #d32f2f;
}

.benefits-access-btn svg {
    width: 20px;
    height: 20px;
}

/* Responsive Styles for Benefits Booklet Page */
@media (max-width: 1024px) {
    .benefits-hero-section {
        height: 60vh;
        min-height: 500px;
    }

    .benefits-hero-content {
        padding: 3rem 2rem;
    }

    .benefits-title {
        font-size: 2rem;
    }

    .benefits-year {
        font-size: 1.25rem;
    }

    .benefits-filter-container {
        margin: 0 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .benefits-filter-left {
        flex-wrap: wrap;
        width: 100%;
    }

    .benefits-filter-right {
        width: 100%;
    }

    .benefits-search-wrapper {
        width: 100%;
    }

    .benefits-search-input {
        min-width: 200px;
        width: 100%;
    }

    .benefits-content-section {
        padding: 3rem 2rem;
    }

    .benefits-content-container {
        gap: 2.5rem;
    }

    .benefits-section-title {
        font-size: 1.35rem;
    }

    .benefits-intro-text,
    .benefits-offer-text,
    .benefits-howto-text,
    .benefits-practical-text,
    .benefits-questions-text,
    .benefits-lostpass-text,
    .benefits-help-text,
    .benefits-contact-item {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .benefits-hero-section {
        height: 50vh;
        min-height: 400px;
    }

    .benefits-hero-content {
        padding: 2rem 1.5rem;
        align-items: center;
        text-align: center;
    }

    .benefits-text-wrapper {
        align-items: center;
    }

    .benefits-title {
        font-size: 1.75rem;
        padding: 0.6rem 1.2rem;
    }

    .benefits-year {
        font-size: 1.1rem;
        padding: 0.4rem 1.2rem;
    }

    .benefits-download-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .benefits-filter-section {
        padding: 1rem 1.5rem;
    }

    .benefits-filter-container {
        margin: 0;
        flex-direction: column;
        gap: 1rem;
    }

    .benefits-filter-left {
        width: 100%;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: flex-start;
    }

    .benefits-filter-label {
        font-size: 0.9rem;
        margin-right: 0;
    }

    .benefits-filter-divider {
        height: 20px;
        margin: 0 0.25rem;
    }

    .benefits-filter-dropdown {
        flex: 0 0 auto;
    }

    .benefits-filter-btn {
        font-size: 0.9rem;
        padding: 0.4rem 0.5rem;
        white-space: nowrap;
    }

    .benefits-filter-btn svg {
        width: 14px;
        height: 14px;
    }

    .benefits-filter-right {
        width: 100%;
    }

    .benefits-search-wrapper {
        width: 100%;
    }

    .benefits-search-input {
        width: 100%;
        min-width: auto;
        padding: 0.6rem 2.75rem 0.6rem 0.875rem;
        font-size: 0.9rem;
    }

    .benefits-search-btn {
        right: 0.5rem;
    }

    .benefits-content-section {
        padding: 2.5rem 1.5rem;
    }

    .benefits-content-container {
        gap: 2rem;
    }

    .benefits-section-title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .benefits-intro-text,
    .benefits-offer-text,
    .benefits-howto-text,
    .benefits-practical-text,
    .benefits-questions-text,
    .benefits-lostpass-text,
    .benefits-help-text,
    .benefits-contact-item {
        font-size: 0.95rem;
    }

    .benefits-offer-content {
        gap: 1.25rem;
    }

    .benefits-practical-list {
        gap: 1.25rem;
    }

    .benefits-cards-section {
        gap: 1.25rem;
    }

    .benefits-card {
        max-width: 100%;
        height: 280px;
    }

    .benefits-card-content {
        padding: 1rem;
    }

    .benefits-card-title-large {
        font-size: 1.35rem;
    }

    .benefits-card-title-medium {
        font-size: 1rem;
    }

    .benefits-access-btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .benefits-hero-section {
        height: 40vh;
        min-height: 300px;
    }

    .benefits-hero-content {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }

    .benefits-title {
        font-size: 1.5rem;
        padding: 0.5rem 1rem;
    }

    .benefits-year {
        font-size: 1rem;
        padding: 0.35rem 1rem;
    }

    .benefits-download-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .benefits-filter-section {
        padding: 1rem;
    }

    .benefits-filter-container {
        gap: 0.875rem;
    }

    .benefits-filter-left {
        gap: 0.4rem;
        row-gap: 0.6rem;
    }

    .benefits-filter-label {
        font-size: 0.85rem;
        font-weight: 600;
        width: 100%;
        margin-bottom: 0.25rem;
    }

    .benefits-filter-divider {
        height: 18px;
        margin: 0 0.2rem;
        opacity: 0.3;
    }

    .benefits-filter-dropdown {
        flex: 1 1 auto;
        min-width: 0;
    }

    .benefits-filter-btn {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        background-color: #f9f9f9;
        width: 100%;
        justify-content: space-between;
    }

    .benefits-filter-btn:hover {
        background-color: #f0f0f0;
        opacity: 1;
    }

    .benefits-filter-btn svg {
        width: 12px;
        height: 12px;
        flex-shrink: 0;
    }

    .benefits-search-wrapper {
        width: 100%;
    }

    .benefits-search-input {
        font-size: 0.85rem;
        padding: 0.65rem 2.5rem 0.65rem 0.875rem;
        width: 100%;
        box-sizing: border-box;
    }

    .benefits-search-btn {
        right: 0.4rem;
        padding: 0.5rem;
    }

    .benefits-search-btn svg {
        width: 18px;
        height: 18px;
    }

    .benefits-content-section {
        padding: 2rem 1rem;
    }

    .benefits-content-container {
        gap: 1.75rem;
    }

    .benefits-section-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .benefits-intro-text,
    .benefits-offer-text,
    .benefits-howto-text,
    .benefits-practical-text,
    .benefits-questions-text,
    .benefits-lostpass-text,
    .benefits-help-text,
    .benefits-contact-item {
        font-size: 0.9rem;
    }

    .benefits-offer-content {
        flex-direction: column;
        gap: 1rem;
    }

    .benefits-icon-wrapper {
        margin-top: 0;
    }

    .benefits-card {
        height: 400px;
    }

    .benefits-card-content {
        padding: 1.25rem;
    }

    .benefits-card-title-large {
        font-size: 1.75rem;
    }

    .benefits-card-subtitle {
        font-size: 0.9rem;
    }

    .benefits-card-title-medium {
        font-size: 1.25rem;
    }

    .benefits-card-validity {
        font-size: 0.85rem;
    }

    .benefits-card-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .benefits-practical-item {
        gap: 0.75rem;
    }

    .benefits-contact-info {
        gap: 0.75rem;
    }

    .benefits-access-section {
        margin-top: 1.5rem;
        padding-top: 2rem;
    }

    .benefits-access-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

    .benefits-cards-section {
        gap: 1rem;
        flex-direction: column;
    }

    .benefits-card {
        max-width: 100%;
        height: 240px;
    }

    .benefits-card-content {
        padding: 0.875rem;
    }

    .benefits-card-title-large {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }

    .benefits-card-subtitle {
        font-size: 0.75rem;
    }

    .benefits-card-title-medium {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
    }

    .benefits-card-validity {
        font-size: 0.65rem;
    }

    .benefits-card-button {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
        width: 100%;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 4rem 2rem;
    background-color: #fff;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 3rem;
    color: #000;
    letter-spacing: 1px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-accordion-item {
    background-color: #000;
    border-radius: 0;
    overflow: hidden;
}

.faq-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-accordion-header:hover {
    background-color: #1a1a1a;
}

.faq-accordion-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    flex: 1;
}

.faq-accordion-icon {
    color: #fff;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-accordion-item.expanded .faq-accordion-icon {
    transform: rotate(90deg);
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #fff;
}

.faq-accordion-content-inner {
    padding: 2rem;
    color: #333;
    line-height: 1.6;
}

.faq-question-item {
    margin-bottom: 2rem;
}

.faq-question-item:last-child {
    margin-bottom: 0;
}

.faq-question-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.faq-question-title::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000;
    font-size: 1.5rem;
    line-height: 1;
}

.faq-answer {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.faq-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.faq-list li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.faq-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000;
    font-size: 1.2rem;
    line-height: 1;
}

.faq-link {
    color: #0052B4;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.faq-link:hover {
    color: #003d87;
}

/* Responsive Styles for FAQ Section */
@media (max-width: 1024px) {
    .faq-section {
        padding: 3rem 1.5rem;
    }

    .faq-section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .faq-accordion-header {
        padding: 1.25rem 1.5rem;
    }

    .faq-accordion-title {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 2rem 1rem;
    }

    .faq-section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .faq-accordion-header {
        padding: 1rem 1.25rem;
    }

    .faq-accordion-title {
        font-size: 0.95rem;
    }

    .faq-accordion-content-inner {
        padding: 1.5rem;
    }

    .faq-question-item {
        margin-bottom: 1.5rem;
    }

    .faq-question-title {
        font-size: 1rem;
        padding-left: 1.25rem;
    }

    .faq-answer {
        font-size: 0.95rem;
    }

    .faq-list li {
        font-size: 0.95rem;
        padding-left: 1.25rem;
    }
}

@media (max-width: 480px) {
    .faq-question-item {
        margin-bottom: 1.25rem;
    }

    .faq-question-title {
        font-size: 0.95rem;
        padding-left: 1rem;
        margin-bottom: 0.75rem;
    }

    .faq-answer {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .faq-list li {
        font-size: 0.9rem;
        padding-left: 1rem;
        margin-bottom: 0.5rem;
    }
}

/* Contact Page Styles */
.contact-hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    margin-top: 0;
}

.contact-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.6);
}

.contact-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 4rem 2rem;
    color: white;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 900px;
}

/* Responsive Styles for Contact Page */
@media (max-width: 1024px) {
    .contact-hero-title {
        font-size: 3rem;
    }

    .contact-hero-description {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        height: 50vh;
        min-height: 400px;
    }

    .contact-hero-content {
        padding: 2rem 1.5rem;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-section {
        height: 40vh;
        min-height: 300px;
    }

    .contact-hero-content {
        padding: 1.5rem 1rem;
    }

    .contact-hero-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
        letter-spacing: 1px;
        padding-left: 0;
    }

    .contact-hero-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* Contact Cards Section Styles */
.contact-cards-section {
    padding: 4rem 2rem;
    background-color: #fff;
}

.contact-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-card {
    background-color: #f5f5f5;
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
}

.contact-card-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.contact-card-hours {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 0.95rem;
}

.contact-card-hours svg {
    flex-shrink: 0;
    color: #666;
}

.contact-card-button {
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.contact-card-button:hover {
    background-color: #333;
    transform: scale(1.05);
}

.contact-card-button:active {
    transform: scale(0.98);
}

/* Responsive Styles for Contact Cards */
@media (max-width: 1024px) {
    .contact-cards-section {
        padding: 3rem 1.5rem;
    }

    .contact-cards-container {
        gap: 1.5rem;
    }

    .contact-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-cards-section {
        padding: 2rem 1rem;
    }

    .contact-cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        padding: 1.75rem;
    }

    .contact-card-title {
        font-size: 1.25rem;
    }

    .contact-card-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .contact-cards-section {
        padding: 1.5rem 1rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1.25rem;
    }

    .contact-card-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .contact-card-description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .contact-card-hours {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }

    .contact-card-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 1.5rem 1rem;
    }

    .faq-section-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .faq-accordion-header {
        padding: 0.875rem 1rem;
    }

    .faq-accordion-title {
        font-size: 0.9rem;
    }

    .faq-accordion-icon {
        width: 18px;
        height: 18px;
    }

    .faq-accordion-content-inner {
        padding: 1.25rem;
        font-size: 0.9rem;
    }
}

/* Ticketing Page Styles */
.ticketing-hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    margin-top: 0;
}

.ticketing-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.6);
}

.ticketing-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 4rem 2rem;
    color: white;
}

.ticketing-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-left: 15rem;
}

.ticketing-hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 800px;
    padding-left: 15rem;
}

.products-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
}

.products-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 3rem;
    text-align: left;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.products-filters {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.products-filters .filter-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.products-filters .filter-group::-webkit-scrollbar {
    height: 6px;
}

.products-filters .filter-group::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.products-filters .filter-group::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.products-filters .filter-group::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #ddd;
    background-color: white;
    color: #333;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.filter-btn.active svg {
    fill: white;
}

.filter-btn.active svg g {
    fill: white;
}

.filter-btn:hover {
    border-color: #666;
    background-color: #f5f5f5;
}

.filter-btn.active {
    background-color: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
}

.filter-btn[data-filter="theme"] {
    border: 1px solid #80A1C8;
    color: #80A1C8;
    background-color: transparent;
}

.filter-btn[data-filter="theme"]:hover {
    border-color: #80A1C8;
    color: #80A1C8;
    background-color: transparent;
}

.filter-btn[data-filter="theme"].active {
    border-color: #80A1C8;
    color: white;
    background-color: #80A1C8;
}

.filter-btn[data-filter="resort"] {
    border: 1px solid #292929;
    background-color: transparent;
}

.filter-btn[data-filter="resort"]:hover {
    border-color: #292929;
    background-color: transparent;
}

.filter-btn[data-filter="resort"].active {
    border-color: #112846;
    background-color: #112846;
    color: white;
}

.filter-btn[data-filter="resort"][data-value="all"].active {
    background-color: #112846;
    border-color: #112846;
    color: white;
}

.filter-btn[data-filter="resort"][data-value="all"].active svg {
    fill: white;
}

.filter-btn[data-filter="resort"][data-value="all"].active svg g {
    fill: white;
}

.filter-btn[data-filter="resort"].active svg {
    fill: white;
}

.filter-btn[data-filter="resort"].active svg g {
    fill: white;
}

.filter-btn[data-filter="theme"][data-value="all"].active {
    background-color: #80A1C8;
    border-color: #80A1C8;
    color: white;
}

.filter-btn[data-filter="theme"].active svg {
    fill: white;
}

.filter-btn[data-filter="theme"].active svg g {
    fill: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background-color: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.product-card-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 0;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-tags {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    z-index: 2;
}

.product-tag {
    background-color: #2F3A47;
    padding: 0.35rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.product-tag:hover {
    background-color: #1E1E1E;
}

.product-tag svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.product-card-logo {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    transform: scale(0.5);
    transform-origin: bottom left;
    width: 400px;
    height: 100px;
}

.product-logo-image {

    background-color: #EAEDEF;
    border-radius: 0 12px 0 12px;
    padding: 0.5rem;
    object-fit: contain;
    display: block;
}

.product-logo-text {
    background-color: #EAEDEF;
    border-radius: 0 12px 0 12px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #1a3a5c;
    white-space: nowrap;
    display: inline-block;
}

.product-card-content {
    padding: 1.5rem;
    background-color: transparent;
}

.product-card-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.product-card-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-card-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.product-booking-info {
    margin-bottom: 1.5rem;
}

.product-booking-required {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.product-booking-question {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.product-booking-place {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
}

.product-booking-free {
    color: #999;
    font-weight: 400;
}

.product-card-buttons {
    display: flex;
    gap: 0.75rem;
}

.product-buy-btn,
.product-info-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.product-buy-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.product-buy-btn img {
    filter: brightness(0) invert(1);
    width: 32px;
    height: 28px;
}

.product-buy-btn {
    background-color: #1a1a1a;
    color: white;
}

.product-buy-btn:hover {
    background-color: #333;
}

.product-info-btn {
    background-color: transparent;
    color: #333;
    border: 1px solid #000;
}

.product-info-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.products-pagination,
.news-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-btn {
    width: 40px;
    border: none;
    background-color: transparent;
    height: 40px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover {
    background-color: #f5f5f5;
}

.pagination-btn.active {
    background-color: #1a1a1a;
    color: white;
    border-radius: 4px;
}

/* Responsive Styles for Ticketing Page */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .ticketing-hero-title {
        font-size: 3rem;
    }

    .ticketing-hero-description {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .ticketing-hero-section {
        height: 50vh;
        min-height: 400px;
    }

    .ticketing-hero-content {
        padding: 2rem 1.5rem;
    }

    .ticketing-hero-title {
        font-size: 2.5rem;
    }

    .ticketing-hero-description {
        font-size: 1.1rem;
    }

    .products-section {
        padding: 3rem 1.5rem;
    }

    .products-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .ticketing-hero-section {
        height: 40vh;
        min-height: 300px;
    }

    .ticketing-hero-content {
        padding: 1.5rem 1rem;
        padding-left: 1rem;
        padding-right: 1rem;
        text-align: left;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .ticketing-hero-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
        letter-spacing: 1px;
        padding-left: 0;
        text-align: left;
    }

    .ticketing-hero-description {
        font-size: 0.85rem;
        line-height: 1.5;
        padding-left: 0;
        text-align: left;
    }

    .products-section {
        padding: 2rem 1rem;
    }

    .products-title {
        font-size: 1.75rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .product-card-image {
        height: 200px;
    }

    .product-logo-circle {
        width: 60px;
        height: 60px;
        font-size: 0.6rem;
    }

    .product-card-content {
        padding: 1rem;
    }

    .product-card-name {
        font-size: 1.1rem;
    }

    .product-card-buttons {
        flex-direction: column;
    }

    .product-buy-btn,
    .product-info-btn {
        width: 100%;
    }
}

/* Compare Products Section */
.compare-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.compare-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.compare-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: #1a3a5c;
}

.compare-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.compare-description p {
    margin-bottom: 1rem;
}

.compare-description p:last-child {
    margin-bottom: 0;
}

.compare-table-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.compare-table {
    max-width: 1000px;
    width: 100%;
}

.compare-header {
    margin-bottom: 2rem;
}

.compare-header-item {
    text-align: center;
}

.compare-product-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a3a5c;
    margin: 0;
}

.compare-product-card {
    position: relative;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    height: 100%;
    min-height: 150px;
    display: flex;
    flex-direction: column;
}

.compare-product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.compare-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compare-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.compare-card-chamonix .compare-product-overlay {
    background: linear-gradient(180deg, rgba(26, 58, 92, 0.7) 0%, rgba(26, 58, 92, 0.85) 100%);
}

.compare-card-mbu .compare-product-overlay {
    background: linear-gradient(180deg, rgba(139, 69, 19, 0.7) 0%, rgba(101, 50, 14, 0.85) 100%);
}

.compare-product-content {
    position: relative;
    z-index: 3;
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.compare-product-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.compare-product-price {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.compare-product-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.compare-buy-btn {
    background-color: white;
    color: #1a1a1a;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.4rem;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.compare-buy-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    text-decoration: none;
}

.compare-buy-btn svg {
    stroke: #1a1a1a;
    width: 14px;
    height: 14px;
}

.compare-info-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.compare-info-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.compare-card-chamonix .compare-info-btn {
    border-color: white;
}

.compare-card-mbu .compare-info-btn {
    border-color: white;
}

/* Comparison Table */
.comparison-table {
    margin-top: 0;
    background-color: transparent;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: white;
}

.comparison-row:nth-child(even) {
    background-color: #f5f5f5;
}

.comparison-label {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    color: #1a1a1a;
    display: flex;
    align-items: center;
}

.comparison-cell {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #1a1a1a;
}

.comparison-cell svg {
    flex-shrink: 0;
}

.comparison-row-cards {
    background-color: transparent !important;
}

.comparison-cell-card {
    padding: 0.5rem;
    align-items: stretch;
    justify-content: stretch;
}

.comparison-cell-card:first-of-type {
    padding-right: 0.75rem;
    padding-left: 0.5rem;
}

.comparison-cell-card:last-of-type {
    padding-left: 0.75rem;
    padding-right: 0.5rem;
}

.comparison-cell-card .compare-product-card {
    width: 100%;
    height: 100%;
}

/* Comparison Accordion */
.comparison-accordion {
    margin-top: 0;
}

.comparison-accordion-item {
    border-top: none;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.comparison-accordion-header {
    width: 100%;
    background-color: #1a1a1a;
    color: white;
    padding: 1rem 1.5rem;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    transition: background-color 0.3s ease;
}

.comparison-accordion-header:hover {
    background-color: #2a2a2a;
}

.comparison-accordion-header .accordion-chevron {
    transition: transform 0.3s ease;
}

.comparison-accordion-item.active .accordion-chevron {
    transform: rotate(180deg);
}

.comparison-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: white;
    padding: 0;
}

.comparison-accordion-item.active .comparison-accordion-content {
    max-height: 1000px;
    padding: 0;
}

/* Comparison Footnotes */
.comparison-footnotes {
    padding: 1.5rem;
    background-color: #fafafa;
}

.comparison-footnotes p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.comparison-footnotes p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .compare-section {
        padding: 2rem 1rem;
    }

    .compare-title {
        font-size: 1.75rem;
    }

    .compare-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .comparison-row-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .comparison-row-cards .comparison-label {
        display: none;
    }

    .comparison-row-cards .comparison-cell {
        padding: 0.5rem;
    }

    .comparison-cell-card {
        padding: 0;
        height: 100%;
    }

    .compare-product-card {
        min-height: 280px;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .compare-product-image {
        flex-shrink: 0;
    }

    .compare-product-content {
        padding: 1rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .compare-product-name {
        font-size: 1.25rem;
    }

    .compare-product-price {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .compare-product-buttons {
        flex-direction: column;
        margin-top: auto;
    }

    .compare-buy-btn,
    .compare-info-btn {
        width: 100%;
        justify-content: center;
    }

    .comparison-table {
        margin-top: 0;
    }

    .comparison-row:not(.comparison-row-cards) {
        grid-template-columns: 1fr;
    }

    .comparison-label,
    .comparison-cell {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .comparison-cell {
        border-top: 1px solid #e0e0e0;
        justify-content: flex-start;
    }

    .comparison-accordion-header {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .comparison-footnotes {
        padding: 1rem;
    }

    .comparison-footnotes p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .comparison-row-cards {
        gap: 0.5rem;
    }

    .comparison-cell-card {
        padding: 0;
    }

    .compare-product-card {
        min-height: 260px;
    }

    .compare-product-content {
        padding: 0.875rem;
    }

    .compare-product-name {
        font-size: 1.1rem;
    }

    .compare-product-price {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .compare-buy-btn,
    .compare-info-btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
}

/* Booking Page Styles */
.booking-header {
    background-color: #112846;
    width: 100%;
    padding: 1rem 2rem;
    position: relative;
    z-index: 1000;
}

.booking-header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.booking-header .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.booking-header .logo svg {
    height: 43px;
    width: auto;
    display: block;
}

.booking-header .logo svg path {
    fill: #fff;
}

.booking-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: white;
}

.booking-logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-logo-icon svg {
    width: 100%;
    height: 100%;
}

.booking-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.booking-logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    font-family: 'Raleway', sans-serif;
}

.booking-logo-sub {
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    font-family: 'Raleway', sans-serif;
}

.booking-header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.booking-language {
    font-size: 1rem;
    font-weight: 500;
    color: white;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.booking-language:hover {
    opacity: 0.7;
}

.booking-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    transition: opacity 0.3s ease;
}

.booking-icon-btn:hover {
    opacity: 0.7;
}

.booking-icon-btn svg {
    width: 24px;
    height: 24px;
}

.booking-cart-btn {
    position: relative;
}

.booking-cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #E63946;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transform: translate(25%, -25%);
}

.booking-chat-container {
    background-color: #20B2AA;
    border-radius: 4px;
    padding: 0.5rem;
    margin-left: 0.5rem;
}

.booking-chat-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 0;
    transition: opacity 0.3s ease;
}

.booking-chat-btn:hover {
    opacity: 0.8;
}

.booking-chat-btn svg {
    width: 24px;
    height: 24px;
}

.booking-main {
    min-height: calc(100vh - 80px);
    background-color: white;
}

/* Booking Image Section Styles */
.booking-image-section {
    background-color: white;
    width: 100%;
    padding: 2rem 8rem;
}

.booking-image-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.booking-image-container:has(.booking-selection-card[style*="display: none"]) {
    flex-direction: column;
}

.booking-image-container:has(.booking-selection-card[style*="display: none"]) .booking-image-wrapper {
    width: 100%;
}

.booking-image-wrapper {
    flex: 1;
    border: 1px solid #979797;
    border-radius: 8px;
    overflow: hidden;
}

.booking-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.booking-image-description-section {
    background-color: white;
    width: 100%;
    padding: 1rem 8rem;
}

.booking-image-description-container {
    max-width: 1400px;
    margin: 0 auto;
}

.booking-image-description-content {
    display: flex;
    align-items: center;
}

.booking-image-description-text {
    font-size: 1rem;
    color: #333;
}

.booking-selection-card {
    flex: 0 0 400px;
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 2rem;
}

.booking-selection-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.booking-price-details-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #f5f5f5;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    color: #666;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: auto;
}

.booking-price-details-btn:hover {
    background-color: #e8e8e8;
}

/* Cart Modal Styles */
.booking-cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    pointer-events: none;
}

.booking-cart-modal.active {
    display: block;
    pointer-events: all;
}

.booking-cart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-cart-modal.active .booking-cart-overlay {
    opacity: 1;
}

.booking-cart-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 400px;
    background-color: white;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    overflow-y: auto;
}

.booking-cart-modal.active .booking-cart-panel {
    transform: translateX(0);
}

.booking-cart-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.booking-cart-close:hover {
    opacity: 0.7;
}

.booking-cart-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 1.5rem 0;
    text-align: center;
    padding-top: 0.5rem;
}

.booking-cart-items {
    flex: 1;
    margin-bottom: 1rem;
}

.booking-cart-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 0;
}

.booking-cart-item-icon {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.booking-cart-item-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.booking-cart-item-name {
    font-size: 0.875rem;
    color: #333;
    line-height: 1.4;
    flex: 1;
}

.booking-cart-item-price {
    font-size: 0.875rem;
    color: #333;
    font-weight: 500;
    flex-shrink: 0;
}

.booking-cart-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 1rem 0;
}

.booking-cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
}

.booking-cart-subtotal-label {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
}

.booking-cart-subtotal-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
}

@media (max-width: 768px) {
    .booking-cart-panel {
        max-width: 100%;
        width: 100%;
    }

    .booking-selection-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .booking-price-details-btn {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
}

.booking-selection-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d32f2f;
    margin: 0;
}

.booking-selection-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 1rem 0;
}

.booking-selection-item {
    margin-bottom: 0.5rem;
}

.booking-selection-item-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.booking-selection-item-left {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex: 1;
}

.booking-selection-icon {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.booking-selection-item-content {
    flex: 1;
}

.booking-selection-label {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.booking-selection-value {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
}

.booking-selection-edit-btn {
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

.booking-selection-edit-btn:hover {
    opacity: 0.7;
}

.booking-person-card {
    background-color: #f5f5f5;
    border-radius: 6px;
    padding: 1rem;
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.booking-person-icon {
    flex-shrink: 0;
}

.booking-person-label {
    font-size: 0.875rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 500;
}

.booking-selection-total {
    display: flex;
    justify-content: flex-end;
    margin: 1rem 0;
}

.booking-total-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    min-height: 1.5rem;
    line-height: 1.5rem;
}

.booking-continue-btn {
    width: 100%;
    background-color: #d32f2f;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.booking-continue-btn:hover {
    background-color: #b71c1c;
}

/* Responsive styles for booking image section */
@media (max-width: 1200px) {
    .booking-selection-card {
        flex: 0 0 350px;
    }
}

@media (max-width: 968px) {
    .booking-image-container {
        flex-direction: column;
    }

    .booking-selection-card {
        flex: 1;
        width: 100%;
        position: static;
    }
}

@media (max-width: 768px) {
    .booking-image-section {
        padding: 1rem;
    }

    .booking-image-wrapper {
        border-radius: 6px;
    }

    .booking-selection-card {
        padding: 1rem;
    }

    .booking-image-description-section {
        padding: 1rem;
    }
}

/* Booking Filter Section Styles */
.booking-filter-section {
    background-color: white;
    width: 100%;
    padding: 2rem 8rem;
}

.booking-filter-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.booking-date-selector {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    position: relative;
}

.booking-arrow-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.booking-arrow-btn:hover {
    opacity: 0.7;
}

.booking-arrow-btn svg {
    width: 20px;
    height: 20px;
    display: block;
}

.booking-arrow-left svg {
    transform: scaleX(1);
}

.booking-arrow-right svg {
    transform: scaleX(-1);
}

.booking-week-label {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
}

.booking-date-range {
    font-size: 1rem;
    font-weight: 700;
    color: #E63946;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.booking-date-range:hover {
    opacity: 0.8;
}

.booking-price-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.booking-price-label {
    font-size: 0.875rem;
    font-weight: 400;
    color: #4a4a4a;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.5px;
}

.booking-price-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-price-btn {
    background-color: #e0e0e0;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    transition: background-color 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.booking-price-btn span {
    font-size: 0.875rem;
    font-weight: 700;
    color: #4a4a4a;
    line-height: 1.2;
}

.booking-price-btn-active {
    background-color: #E63946;
}

.booking-price-btn-active span {
    color: white;
}

.booking-price-btn:hover:not(.booking-price-btn-active) {
    background-color: #d0d0d0;
}

/* Responsive styles for booking filter section */
@media (max-width: 768px) {
    .booking-filter-section {
        padding: 1rem;
    }

    .booking-filter-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .booking-date-selector {
        width: 100%;
        justify-content: center;
    }

    .booking-price-selector {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .booking-price-label {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        transform: none;
        white-space: nowrap;
        text-align: center;
    }

    .booking-price-label br {
        display: none;
    }

    .booking-price-buttons {
        width: 100%;
        flex-wrap: wrap;
    }

    .booking-price-btn {
        flex: 1;
        min-width: 120px;
    }
}

/* Booking Calendar Widget Styles */
.booking-calendar-widget-container {
    display: none;
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 0;
    min-width: 320px;
    max-width: 400px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.booking-calendar-widget-container.active {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.booking-calendar-widget-container::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.booking-calendar-widget {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
}

.booking-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e0e0e0;
}

.booking-calendar-month {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
    margin: 0;
}

.booking-calendar-nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.booking-calendar-nav-btn:hover {
    opacity: 0.7;
}

.booking-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.booking-calendar-weekday {
    font-size: 0.75rem;
    font-weight: 400;
    color: #808080;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    padding: 0.25rem 0;
}

.booking-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.booking-calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 400;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.booking-calendar-day:hover:not(.inactive):not(.selected) {
    background-color: #f0f0f0;
}

.booking-calendar-day.inactive {
    color: #b0b0b0;
    cursor: default;
}

.booking-calendar-day.selected {
    background-color: #E63946;
    color: white;
    font-weight: 700;
}

.booking-calendar-day-empty {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-calendar-day.booking-calendar-day-available {
    color: #112846;
    font-weight: 500;
}

.booking-calendar-day.booking-calendar-day-selected {
    background-color: #112846;
    color: white;
    font-weight: 700;
}

.booking-calendar-day:hover:not(.inactive):not(.selected):not(.booking-calendar-day-selected) {
    background-color: #f0f0f0;
}

.booking-calendar-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.booking-calendar-arrow-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.booking-calendar-arrow-btn:hover {
    opacity: 0.7;
}

.booking-calendar-week-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
}

.booking-calendar-week-range {
    font-size: 0.875rem;
    font-weight: 700;
    color: #E63946;
    font-family: 'Raleway', sans-serif;
}

/* Booking Calendar Section Styles */
.booking-calendar-section {
    background-color: white;
    width: 100%;
    padding: 2rem 8rem;
}

.booking-calendar-container {
    max-width: 1400px;
    margin: 0 auto;
}

.booking-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
}

.booking-day-card {
    background-color: white;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    min-height: 140px;
}

.booking-day-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #E63946;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem;
    text-align: center;
    border-radius: 8px 8px 0 0;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.5px;
}

.booking-day-name {
    font-size: 0.875rem;
    font-weight: 400;
    color: #808080;
    font-family: 'Raleway', sans-serif;
    margin-top: 0.5rem;
}

.booking-day-card .booking-day-badge ~ .booking-day-name {
    margin-top: 1.75rem;
}

.booking-day-date {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
    text-align: center;
}

.booking-day-card.booking-day-selected {
    background-color: #112846;
    border-color: #112846;
    color: white;
}

.booking-day-card.booking-day-selected .booking-day-name,
.booking-day-card.booking-day-selected .booking-day-date,
.booking-day-card.booking-day-selected .booking-day-price {
    color: white;
}

.booking-day-card.booking-day-range {
    background-color: rgba(17, 40, 70, 0.1);
    border-color: #112846;
}

.booking-day-inactive .booking-day-date {
    color: #b0b0b0;
    font-weight: 400;
}

.booking-day-status {
    font-size: 0.875rem;
    font-weight: 400;
    color: #b0b0b0;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    margin-top: auto;
}

.booking-day-price {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    min-height: 1.5rem;
    line-height: 1.5rem;
}

.booking-day-price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    margin-top: auto;
    min-height: 2.5rem;
}

.booking-day-price-old {
    font-size: 0.75rem;
    font-weight: 400;
    color: #b0b0b0;
    font-family: 'Raleway', sans-serif;
    text-decoration: line-through;
    text-align: center;
}

/* Responsive styles for booking calendar section */
@media (max-width: 1024px) {
    .booking-calendar-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .booking-calendar-section {
        padding: 1rem;
    }

    .booking-calendar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .booking-day-card {
        min-height: 120px;
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .booking-calendar-grid {
        grid-template-columns: 1fr;
    }
}

/* Booking Calendar Button Section Styles */
.booking-calendar-button-section {
    background-color: white;
    width: 100%;
    padding: 2rem 8rem;
}

.booking-calendar-button-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.booking-calendar-button {
    background-color: #E63946;
    border: none;
    border-radius: 8px;
    padding: 0.875rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.booking-calendar-button:hover {
    background-color: #d32f2f;
    opacity: 0.9;
}

.booking-calendar-button:active {
    opacity: 0.8;
}

.booking-calendar-button-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.booking-calendar-button span {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    font-family: 'Raleway', sans-serif;
    text-transform: none;
    letter-spacing: 0.3px;
}

/* Responsive styles for booking calendar button section */
@media (max-width: 768px) {
    .booking-calendar-button-section {
        padding: 1rem;
    }

    .booking-calendar-button {
        padding: 0.75rem 1.25rem;
        width: 100%;
        justify-content: center;
    }

    .booking-calendar-button span {
        font-size: 0.9rem;
    }
}

/* Booking Info Section Styles */
.booking-info-section {
    background-color: white;
    width: 100%;
    padding: 2rem 8rem;
}

.booking-info-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.booking-info-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.booking-stat-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.booking-stat-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-stat-icon-img {
    width: 32px;
    height: 32px;
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

.booking-stat-content {
    flex: 1;
}

.booking-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.booking-stat-label {
    font-size: 0.875rem;
    font-weight: 400;
    color: #4a4a4a;
    font-family: 'Raleway', sans-serif;
    line-height: 1.4;
}

.booking-info-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.booking-info-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-info-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-title-emoji {
    font-size: 1.25rem;
    line-height: 1;
}

.booking-info-text {
    font-size: 1rem;
    font-weight: 400;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    margin: 0;
}

.booking-info-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.booking-subtitle-emoji {
    font-size: 1rem;
    line-height: 1;
}

.booking-areas-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.booking-areas-list li {
    font-size: 1rem;
    font-weight: 400;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.booking-areas-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
}

.booking-areas-list li strong {
    font-weight: 700;
}

.booking-info-note {
    font-size: 0.875rem;
    font-weight: 400;
    color: #4a4a4a;
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.booking-note-emoji {
    font-size: 0.875rem;
    line-height: 1;
    flex-shrink: 0;
}

.booking-info-note strong {
    font-weight: 700;
    color: #1a1a1a;
}

/* Responsive styles for booking info section */
@media (max-width: 1024px) {
    .booking-info-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .booking-info-left {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .booking-stat-item {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .booking-info-section {
        padding: 2rem 1rem;
    }

    .booking-info-container {
        gap: 1.5rem;
    }

    .booking-info-left {
        flex-direction: column;
    }

    .booking-stat-item {
        width: 100%;
    }

    .booking-stat-value {
        font-size: 1.25rem;
    }

    .booking-info-title {
        font-size: 1.1rem;
    }

    .booking-info-text {
        font-size: 0.9rem;
    }
}

/* Responsive styles for booking header */
@media (max-width: 768px) {
    .booking-header {
        padding: 1rem;
    }

    .booking-logo-main {
        font-size: 1.25rem;
    }

    .booking-logo-sub {
        font-size: 0.75rem;
    }

    .booking-logo-icon {
        width: 40px;
        height: 40px;
    }

    .booking-header-right {
        gap: 1rem;
    }

    .booking-language {
        font-size: 0.875rem;
    }
}

/* Basket Page Styles */
.basket-section {
    background-color: #ffffff;
    min-height: calc(100vh - 80px);
    padding: 2rem 8rem;
}

.basket-header-section {
    background-image: url('assets/images/pictures/header-tunnel-achat.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    padding: 4rem 8rem;
    min-height: 200px;
    display: flex;
    align-items: center;
    position: relative;
}

.basket-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.basket-header-section .basket-title {
    position: relative;
    z-index: 1;
}

.checkout-header-section {
    background-image: url('assets/images/pictures/header-tunnel-achat.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    padding: 4rem 8rem;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.checkout-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.checkout-header-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    z-index: 1;
    position: relative;
}

@media (max-width: 768px) {
    .checkout-header-title {
        white-space: nowrap;
        font-size: 1.5rem;
    }
}

.basket-container {
    max-width: 1400px;
    margin: 0 auto;
}

.basket-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.basket-top-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.basket-empty-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: #d32f2f;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: opacity 0.3s ease;
}

.basket-empty-btn:hover {
    opacity: 0.7;
}

.basket-buy-btn {
    background-color: #E82F4E;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 2rem 3rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.basket-buy-btn:hover {
    background-color: #b71c1c;
}

.basket-items {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.basket-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border: 2px solid #EEEEEE;
    border-bottom: 2px solid #EEEEEE;
    position: relative;
}

.basket-item-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.basket-item-icon {
    flex-shrink: 0;
}

.basket-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.basket-item-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.basket-item-details {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #666;
}

.basket-item-calendar-icon {
    flex-shrink: 0;
}

.basket-item-right-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 50%;
    gap: 1rem;
    background-color: #EEEEEE;
}

.basket-item-middle {
    flex: 1;
    font-size: 0.875rem;
    color: #333;
    text-align: center;
    background-color: #EEEEEE;
    padding: 0.5rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
}

.basket-item-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: #EEEEEE;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    min-height: 40px;
    flex: 1;
}

.basket-item-remove {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #D3D3D3;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    width: 24px;
    height: 24px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.basket-item-remove:hover {
    opacity: 0.7;
}

.basket-item-remove svg {
    width: 12px;
    height: 12px;
}

.basket-item-remove svg path {
    stroke: white;
    stroke-width: 2;
}

.basket-item-price {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    min-width: 80px;
    text-align: right;
}

.basket-empty-message {
    text-align: center;
    padding: 3rem;
    color: #666;
    font-size: 1.125rem;
}

.basket-bottom-section {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.basket-promo-section {
    background-color: white;
    border: 1px solid #ffcdd2;
    border-radius: 8px;
    padding: 1.5rem;
}

.basket-promo-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #333;
}

.basket-promo-header svg {
    flex-shrink: 0;
    color: #d32f2f;
}

.basket-promo-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: 'Raleway', sans-serif;
}

.basket-promo-input:focus {
    outline: none;
    border-color: #d32f2f;
}

.basket-promo-confirm-btn {
    width: 100%;
    background-color: #d32f2f;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.basket-promo-confirm-btn:hover {
    background-color: #b71c1c;
}

.basket-amount-section {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    max-width: 400px;
    margin-left: auto;
}

.basket-amount-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.basket-amount-total {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.basket-amount-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #666;
}

.basket-amount-detail {
    display: flex;
    justify-content: space-between;
}

.basket-amount-detail span {
    font-weight: 600;
    color: #333;
}

.basket-bottom-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.basket-add-pass-btn {
    background-color: white;
    color: #d32f2f;
    border: 1px solid #ffcdd2;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.basket-add-pass-btn:hover {
    background-color: #fff5f5;
    border-color: #d32f2f;
}

@media (max-width: 968px) {
    .basket-section {
        padding: 1rem;
    }

    .basket-bottom-section {
        grid-template-columns: 1fr;
    }

    .basket-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .basket-item-middle {
        flex: 1;
        width: 100%;
        text-align: left;
    }

    .basket-item-right {
        width: 100%;
        justify-content: space-between;
    }

    .basket-bottom-actions {
        flex-direction: column;
    }

    .basket-add-pass-btn,
    .basket-buy-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .basket-title {
        font-size: 2rem;
    }

    .basket-top-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .basket-buy-btn {
        width: 100%;
    }
}

/* Booking Footer Styles */
.booking-footer {
    background-color: #112846;
    width: 100%;
    padding: 1.5rem 2rem;
    position: relative;
    z-index: 100;
}

.booking-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.booking-footer-text {
    font-size: 0.875rem;
    font-weight: 400;
    color: #B0B0B0;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.3px;
}

.booking-footer-social {
    display: flex;
    align-items: center;
    gap: 0;
}

.booking-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #B0B0B0;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.booking-social-icon:hover {
    opacity: 0.7;
}

.booking-mb-logo {
    font-size: 1rem;
    font-weight: 700;
    color: #758293;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-social-icon-img {
    width: auto;
    height: 30px;
    
}

.booking-social-icon-img path:first-child {
    display: none;
}


.booking-social-divider {
    width: 1px;
    height: 20px;
    background-color: #B0B0B0;
    margin: 0 1rem;
    opacity: 0.5;
}

/* Booking Title Bar Styles */
.booking-title-bar {
    background-color: white;
    width: 100%;
    padding: 2rem 8rem;
}

.booking-title-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.booking-title-left {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}

.booking-mountain-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-mountain-img {
    width: 32px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

.booking-title-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-title-right {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}

.booking-title-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.booking-title-icon-btn:hover {
    opacity: 0.7;
}

.booking-title-icon {
    width: 40px;
    height: 40px;
    transition: opacity 0.3s ease;
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

.booking-title-days {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive styles for booking title bar */
@media (max-width: 768px) {
    .booking-title-bar {
        padding: 0.75rem 1rem;
    }

    .booking-title-left {
        gap: 0.25rem;
    }

    .booking-title-right {
        gap: 0.25rem;
    }

    .booking-title-container {
        flex-direction: row;
        gap: 0.75rem;
        align-items: center;
        justify-content: space-between;
    }

    .booking-title-left {
        width: auto;
        flex: 1;
    }

    .booking-title-right {
        width: auto;
        justify-content: flex-end;
        flex-shrink: 0;
    }

    .booking-title-text {
        font-size: 1rem;
    }

    .booking-title-days {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .booking-title-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .booking-title-left {
        flex: 1;
        min-width: 0;
    }

    .booking-title-right {
        flex-shrink: 0;
    }

    .booking-title-text {
        font-size: 0.875rem;
    }

    .booking-title-days {
        font-size: 0.875rem;
    }

    .booking-price-label {
        white-space: nowrap;
        font-size: 0.8rem;
        text-align: center;
    }

    .booking-price-label br {
        display: none;
    }

    .booking-price-selector {
        align-items: center;
    }
}

/* Responsive styles for booking footer */
@media (max-width: 768px) {
    .booking-footer {
        padding: 1rem;
    }

    .booking-footer-container {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .booking-footer-text {
        font-size: 0.75rem;
        text-align: center;
    }

    .booking-footer-social {
        gap: 0;
    }

    .booking-social-divider {
        margin: 0 0.75rem;
    }
}

/* Booking Duration Modal Styles */
.booking-duration-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.booking-duration-modal.active {
    display: flex;
}

.booking-duration-modal-content {
    background-color: white;
    border-radius: 12px;
    max-width: 750px;
    width: 100%;
    max-height: 95vh;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.booking-duration-modal-header {
    padding: 1rem 1.25rem 0.5rem;
    position: relative;
    text-align: center;
}

.booking-duration-modal-title-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.booking-duration-modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
    margin: 0;
}

.booking-duration-modal-subtitle {
    font-size: 0.9rem;
    color: #666;
    font-family: 'Raleway', sans-serif;
    margin: 0;
}

.booking-duration-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.booking-duration-modal-close:hover {
    opacity: 0.7;
}

.booking-duration-modal-body {
    padding: 1rem 1.25rem;
    flex: 1;
    overflow-y: auto;
}

.booking-duration-selector-section {
    margin-bottom: 1rem;
    background-color: #F7F7F7;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.booking-duration-selector-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
    font-size: 0.8rem;
    font-weight: 100;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
}

.booking-duration-dropdown {
    position: relative;
    flex: 0 0 auto;
    min-width: 150px;
}

.booking-duration-select {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: 'Raleway', sans-serif;
    background-color: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    padding-right: 2.5rem;
    min-width: 120px;
}

.booking-duration-date-section {
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.booking-duration-date-label {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.booking-duration-date-section .booking-title-icon-btn {
    flex-shrink: 0;
    align-self: flex-start;
}

.booking-duration-date-label > span {
    font-size: 0.8rem;
    font-weight: 500;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-duration-date-range {
    font-size: 0.9rem;
    font-weight: 600;
    color: #112846;
    font-family: 'Raleway', sans-serif;
}

/* Reverse colors for calendar icon */
.booking-duration-date-label .booking-title-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.booking-duration-calendar-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.booking-duration-calendar-month {
    display: flex;
    flex-direction: column;
}

.booking-duration-calendar-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    padding-bottom: 0.375rem;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.booking-duration-calendar-month-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
    margin: 0;
    text-align: center;
    flex: 1;
}

.booking-duration-calendar-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.booking-duration-calendar-nav-btn.prev-month {
    left: 0;
}

.booking-duration-calendar-nav-btn.next-month {
    right: 0;
}

.booking-duration-calendar-nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.booking-duration-calendar-nav-btn:hover {
    opacity: 0.7;
}

.booking-duration-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.booking-duration-calendar-weekday {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: #666;
    font-family: 'Raleway', sans-serif;
    padding: 0.25rem 0;
}

.booking-duration-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}

.booking-duration-calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
    color: #1a1a1a;
    min-height: 28px;
}

.booking-duration-calendar-day.inactive {
    color: #b0b0b0;
    cursor: not-allowed;
}

.booking-duration-calendar-day.selected-start {
    background-color: #112846;
    color: white;
    font-weight: 700;
}

.booking-duration-calendar-day.selected-end {
    background-color: #1F3A67;
    color: white;
    font-weight: 700;
}

.booking-duration-calendar-day.selected-range {
    background-color: #e0e8f0;
    color: #112846;
}

.booking-duration-calendar-day:hover:not(.inactive):not(.selected-start):not(.selected-end) {
    background-color: #f0f0f0;
}

.booking-duration-calendar-day.today {
    border: 2px solid #112846;
    font-weight: 700;
}

.booking-duration-calendar-day.today:not(.selected-start):not(.selected-end):not(.selected-range) {
    background-color: #f0f4f8;
    color: #112846;
}

.booking-duration-modal-footer {
    padding: 0.75rem 1.25rem;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.booking-duration-validate-btn {
    background-color: #E63946;
    color: white;
    border: none;
    border-radius: 2px;
    padding: 0.625rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.booking-duration-validate-btn:hover {
    background-color: #c1121f;
}

/* Booking Persons Modal Styles */
.booking-persons-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
}

.booking-persons-modal.active {
    display: flex;
}

.booking-persons-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.booking-persons-modal-content {
    background-color: white;
    border-radius: 0 0 12px 12px;
    max-width: 600px;
    width: 100%;
    max-height: 100vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    margin-top: 0;
}

.booking-persons-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.booking-persons-modal-title-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.booking-persons-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
    margin: 0;
}

.booking-persons-modal-date {
    font-size: 1rem;
    color: #d32f2f;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
}

.booking-persons-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.booking-persons-modal-close:hover {
    opacity: 0.7;
}

.booking-persons-modal-body {
    padding: 2rem;
    flex: 1;
}

.booking-persons-ticket-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1rem;
    background-color: #f9f9f9;
}

.booking-persons-ticket-info {
    flex: 1;
}

.booking-persons-ticket-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.booking-persons-ticket-age {
    font-size: 0.875rem;
    color: #666;
}

.booking-persons-quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 1.5rem;
}

.booking-persons-quantity-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.booking-persons-quantity-minus {
    background-color: #e0e0e0;
    color: #666;
}

.booking-persons-quantity-minus:hover:not(:disabled) {
    background-color: #d0d0d0;
}

.booking-persons-quantity-minus:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.booking-persons-quantity-plus {
    background-color: #d32f2f;
    color: white;
}

.booking-persons-quantity-plus:hover {
    background-color: #b71c1c;
}

.booking-persons-quantity-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    min-width: 24px;
    text-align: center;
}

.booking-persons-ticket-price {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    min-width: 80px;
    text-align: right;
    min-height: 1.5rem;
    line-height: 1.5rem;
}

.booking-persons-modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.booking-persons-continue-btn {
    background-color: #e0e0e0;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 0.75rem 3rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    cursor: not-allowed;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.booking-persons-continue-btn:not(:disabled) {
    background-color: #d32f2f;
    cursor: pointer;
}

.booking-persons-continue-btn:not(:disabled):hover {
    background-color: #b71c1c;
}

.booking-persons-total-price {
    margin-left: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
}

.booking-persons-promo-message {
    text-align: center;
    padding: 0;
    margin: 0;
    background-color: transparent;
    border-radius: 0;
    font-size: 0.9rem;
    color: #d32f2f;
    font-weight: 600;
    width: 100%;
    max-width: 300px;
}

.booking-persons-promo-savings {
    font-weight: 700;
    color: #d32f2f;
}

@media (max-width: 768px) {
    .booking-persons-modal {
        padding: 1rem;
    }

    .booking-persons-modal-header,
    .booking-persons-modal-body {
        padding: 1.5rem;
    }

    .booking-persons-modal-footer {
        padding: 1rem 1.5rem;
    }

    .booking-persons-ticket-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .booking-persons-quantity-selector {
        margin: 0;
        width: 100%;
        justify-content: center;
    }

    .booking-persons-ticket-price {
        text-align: left;
        width: 100%;
    }
}

.booking-duration-validate-btn:hover {
    background-color: #d32f3f;
}

/* Booking Packages Modal Styles */
.booking-packages-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.booking-packages-modal.active {
    display: flex;
}

.booking-packages-modal-content {
    background-color: white;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.booking-packages-modal-header {
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.booking-packages-modal-title-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-packages-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
    margin: 0;
}

.booking-packages-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.booking-packages-modal-close:hover {
    opacity: 0.7;
}

.booking-packages-modal-body {
    padding: 2rem;
}

.booking-packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.booking-package-card {
    background-color: white;
    border: 1px solid #d0d0d0;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.booking-package-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #112846;
}

.booking-package-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.booking-package-icon-img {
    width: 48px;
    height: 48px;
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

.booking-package-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
    margin: 0;
    text-align: center;
}

.booking-package-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    margin-bottom: 0.5rem;
}

.booking-package-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
}

.booking-package-feature-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

.booking-package-choose-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: white;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    margin-top: auto;
}

.booking-package-choose-btn:hover {
    background-color: #112846;
    border-color: #112846;
    color: white;
}

@media (max-width: 768px) {
    .booking-duration-modal {
        padding: 1rem;
    }

    .booking-duration-calendar-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .booking-duration-selector-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-duration-selector-label {
        margin-bottom: 0.75rem;
    }

    .booking-duration-dropdown {
        width: 100%;
        min-width: unset;
    }

    .booking-duration-modal-header,
    .booking-duration-modal-body {
        padding: 1.5rem;
    }

    .booking-duration-modal-footer {
        padding: 1rem 1.5rem;
    }

    .booking-packages-modal {
        padding: 1rem;
    }

    .booking-packages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .booking-packages-modal-header,
    .booking-packages-modal-body {
        padding: 1.5rem;
    }
}

/* MONT BLANC Unlimited Page Styles */
.mbu-hero-section {
    position: relative;
    width: 100%;
}

.mbu-hero-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
}

.mbu-hero-image-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 600px;
    overflow: hidden;
}

.mbu-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.6);
}

.mbu-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.mbu-hero-stats {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: center;
}

.mbu-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.mbu-slope-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.mbu-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Raleway', sans-serif;
    line-height: 1.2;
}

.mbu-stat-label {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Raleway', sans-serif;
    text-align: right;
}

.mbu-hero-content {
    position: absolute;
    top: 40%;
    left: 2rem;
    max-width: 600px;
    z-index: 10;
}

.mbu-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Raleway', sans-serif;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.mbu-hero-description {
    font-size: 1.25rem;
    font-weight: 400;
    color: white;
    font-family: 'Raleway', sans-serif;
    margin: 0 0 1.5rem 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.mbu-hero-button {
    background-color: transparent;
    border: 2px solid white;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.mbu-hero-button:hover {
    background-color: white;
    color: #112846;
}

/* MBU Info Section Styles */
.mbu-info-section {
    background-color: white;
    width: 100%;
    padding: 4rem 2rem;
}

.mbu-info-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.mbu-info-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mbu-info-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mbu-info-logo {
    margin-bottom: 0.5rem;
}

.mbu-logo-img {
    max-width: 200px;
    height: auto;
}

.mbu-info-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mbu-info-intro {
    font-size: 1rem;
    font-weight: 400;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    margin: 0;
}

.mbu-info-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mbu-info-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mbu-info-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mbu-info-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.mbu-info-icon-star {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.mbu-info-text {
    font-size: 0.875rem;
    font-weight: 400;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding-left: 1.5rem;
}

.mbu-info-notes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.mbu-info-note {
    font-size: 0.875rem;
    font-weight: 400;
    color: #666;
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    margin: 0;
}

.mbu-info-link {
    color: #112846;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.mbu-info-link:hover {
    color: #1F3A67;
}

.mbu-info-map {
    position: sticky;
    top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mbu-map-image {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .mbu-hero-image-container {
        height: 50vh;
        min-height: 400px;
    }

    .mbu-hero-overlay {
        padding: 1.5rem 1rem;
        gap: 0.75rem;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.2) 80%, transparent 100%);
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.5) rgba(0, 0, 0, 0.3);
    }

    .mbu-hero-overlay::-webkit-scrollbar {
        height: 4px;
    }

    .mbu-hero-overlay::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.3);
        border-radius: 2px;
    }

    .mbu-hero-overlay::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.5);
        border-radius: 2px;
    }

    .mbu-hero-overlay::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.7);
    }

    .mbu-hero-stats {
        gap: 0.75rem;
        align-items: center;
        justify-content: flex-start;
        width: max-content;
        min-width: 100%;
        flex-wrap: nowrap;
    }

    .mbu-stat-item {
        align-items: center;
        flex: 0 0 auto;
        min-width: fit-content;
        white-space: nowrap;
    }

    .mbu-stat-value {
        font-size: 1.1rem;
        line-height: 1.2;
    }

    .mbu-stat-label {
        font-size: 0.7rem;
        text-align: center;
        line-height: 1.3;
        white-space: normal;
        max-width: 80px;
    }

    .mbu-hero-content {
        top: 35%;
        left: 1rem;
        right: 1rem;
        max-width: 100%;
    }

    .mbu-hero-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
        letter-spacing: 1px;
    }

    .mbu-hero-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .mbu-info-section {
        padding: 2rem 1rem;
    }

    .mbu-info-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .mbu-hero-overlay {
        padding: 1rem 0.75rem;
        gap: 0.5rem;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .mbu-hero-stats {
        gap: 0.5rem;
        justify-content: flex-start;
        width: max-content;
        min-width: 100%;
        flex-wrap: nowrap;
    }

    .mbu-stat-item {
        flex: 0 0 auto;
        min-width: fit-content;
        padding: 0.25rem;
        white-space: nowrap;
    }

    .mbu-stat-value {
        font-size: 1rem;
        line-height: 1.2;
    }

    .mbu-stat-label {
        font-size: 0.65rem;
        text-align: center;
        line-height: 1.2;
        white-space: normal;
        max-width: 70px;
    }
}

@media (max-width: 375px) {
    .mbu-hero-overlay {
        padding: 0.75rem 0.5rem;
        gap: 0.4rem;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .mbu-hero-stats {
        gap: 0.4rem;
        justify-content: flex-start;
        width: max-content;
        min-width: 100%;
        flex-wrap: nowrap;
    }

    .mbu-stat-item {
        flex: 0 0 auto;
        min-width: fit-content;
        padding: 0.2rem;
        white-space: nowrap;
    }

    .mbu-stat-value {
        font-size: 0.9rem;
    }

    .mbu-stat-label {
        font-size: 0.6rem;
        max-width: 60px;
    }

    .mbu-info-map {
        position: relative;
        top: 0;
        order: -1;
    }

    .mbu-info-title {
        font-size: 1.5rem;
    }

    .mbu-info-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* MBU Benefits Section Styles */
.mbu-benefits-section {
    background-color: #1a1a1a;
    width: 100%;
    padding: 4rem 2rem;
}

.mbu-benefits-container {
    max-width: 1400px;
    margin: 0 auto;
}

.mbu-benefits-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Raleway', sans-serif;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.mbu-benefits-description {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    margin: 0 0 3rem 0;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.mbu-benefits-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.mbu-benefit-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mbu-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.mbu-benefit-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.mbu-benefit-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mbu-benefit-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    padding: 1.5rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mbu-benefit-name {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    font-family: 'Raleway', sans-serif;
    margin: 0;
    line-height: 1.3;
}

.mbu-benefit-logo {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Raleway', sans-serif;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mbu-benefit-logos {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.mbu-benefit-logos > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.mbu-benefit-logos .logo-m {
    width: 40px;
    height: 40px;
    background-color: #d32f2f;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    font-family: 'Raleway', sans-serif;
}

.mbu-benefit-logos .logo-text {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 80px;
    font-family: 'Raleway', sans-serif;
}

.mbu-benefit-logos .logo-circle {
    width: 40px;
    height: 40px;
    background-color: #2196F3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1200px) {
    .mbu-benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .mbu-benefits-section {
        padding: 2rem 1rem;
    }

    .mbu-benefits-title {
        font-size: 1.75rem;
    }

    .mbu-benefits-description {
        font-size: 0.875rem;
        margin-bottom: 2rem;
    }

    .mbu-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .mbu-benefits-grid[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .mbu-benefit-overlay {
        padding: 1rem 0.75rem 0.75rem;
    }

    .mbu-benefit-name {
        font-size: 0.875rem;
    }

    .mbu-benefit-logo {
        font-size: 0.625rem;
    }
}

@media (max-width: 480px) {
    .mbu-benefits-grid[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

/* MBU All Skipasses Section Styles */
.mbu-skipasses-section {
    background-color: white;
    width: 100%;
    padding: 4rem 2rem;
}

.mbu-skipasses-container {
    max-width: 1400px;
    margin: 0 auto;
}

.mbu-skipasses-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 3rem;
    text-align: left;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
}

.mbu-skipasses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1200px) {
    .mbu-skipasses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .mbu-skipasses-section {
        padding: 2rem 1rem;
    }

    .mbu-skipasses-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .mbu-skipasses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mbu-skipasses-grid[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

/* MBU Rates Section Styles */
.mbu-rates-section {
    background-color: white;
    width: 100%;
    padding: 4rem 2rem;
}

.mbu-rates-container {
    max-width: 1400px;
    margin: 0 auto;
}

.mbu-rates-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-align: left;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
}

.mbu-rates-date-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 400;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
}

.mbu-rates-date-label {
    font-weight: 600;
}

.mbu-rates-date-range {
    color: #666;
}

.mbu-rates-table-container {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.mbu-rates-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Raleway', sans-serif;
}

.mbu-rates-th {
    padding: 1rem;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 600;
    background-color: #000000;
    color: #ffffff;
    border-bottom: 2px solid #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mbu-rates-th-duration {
    padding: 1rem;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 600;
    background-color: #000000;
    color: #ffffff;
    border-bottom: 2px solid #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 120px;
}

.mbu-rates-td {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.875rem;
    color: #1a1a1a;
}

.mbu-rates-td-duration {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
}

.mbu-rates-table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

.mbu-rates-table tbody tr:nth-child(even) {
    background-color: #F5F5F5;
}

.mbu-rates-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mbu-rates-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

.mbu-rates-footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.mbu-rates-download-link {
    font-size: 1rem;
    font-weight: 600;
    color: #112846;
    font-family: 'Raleway', sans-serif;
    text-decoration: underline;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.mbu-rates-download-link:hover {
    color: #1F3A67;
}

.mbu-rates-notes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mbu-rates-note {
    font-size: 0.875rem;
    font-weight: 400;
    color: #666;
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    margin: 0;
}

.mbu-rates-note strong {
    color: #1a1a1a;
    font-weight: 600;
}

@media (max-width: 768px) {
    .mbu-rates-section {
        padding: 2rem 1rem;
    }

    .mbu-rates-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .mbu-rates-date-selector {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .mbu-rates-th,
    .mbu-rates-td {
        padding: 0.75rem 0.5rem;
        font-size: 0.75rem;
    }

    .mbu-rates-th-duration,
    .mbu-rates-td-duration {
        padding: 0.75rem 0.5rem;
        font-size: 0.75rem;
    }

    .mbu-rates-icon {
        width: 14px;
        height: 14px;
    }

    .mbu-rates-footer {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .mbu-rates-note {
        font-size: 0.75rem;
    }
}

/* Checkout Styles */
.checkout-section {
    background-color: #ffffff;
    min-height: calc(100vh - 80px);
    padding: 1.5rem 8rem;
    position: relative;
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
}

.checkout-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

.checkout-help-link {
    margin-left: auto;
}

.checkout-order-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background-color: #f5f5f5;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.checkout-order-info {
    font-size: 0.9rem;
    color: #666;
}

.checkout-order-detail-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: #112846;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.5rem;
}

.checkout-progress {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.checkout-back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: #112846;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem;
}

.checkout-steps {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.checkout-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    position: relative;
}

.checkout-step::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 0;
}

.checkout-step:last-child::after {
    display: none;
}

.checkout-step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.checkout-step-completed .checkout-step-icon {
    background-color: #4CAF50;
    color: white;
}

.checkout-step-active .checkout-step-icon {
    background-color: #112846;
    color: white;
}

.checkout-step-label {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}

.checkout-step-active .checkout-step-label {
    color: #112846;
    font-weight: 600;
}

.checkout-content {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #112846;
    padding: 2rem;
}

.checkout-content-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.25rem;
}

.checkout-ticket-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.checkout-ticket-icon {
    flex-shrink: 0;
}

.checkout-ticket-details {
    flex: 1;
}

.checkout-ticket-type {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.checkout-ticket-duration {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.checkout-ticket-name {
    color: #112846;
    font-weight: 600;
    font-size: 0.95rem;
}

.checkout-form-section {
    margin-bottom: 1.5rem;
}

.checkout-form-group {
    margin-bottom: 1rem;
}

.checkout-form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.checkout-form-input-wrapper {
    position: relative;
}

.checkout-form-input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Raleway', sans-serif;
    transition: border-color 0.3s ease;
}

.checkout-payment-form-group.checkout-input-error .checkout-form-input {
    border-color: #e74c3c;
    background-color: #fff5f5;
}

.checkout-payment-form-group.checkout-input-valid .checkout-form-input {
    border-color: #27ae60;
    background-color: #f0fff4;
}

.checkout-form-input.checkout-input-error {
    border-color: #e74c3c !important;
    background-color: #fff5f5 !important;
}

.checkout-form-input.checkout-input-valid {
    border-color: #27ae60 !important;
    background-color: #f0fff4 !important;
}

.checkout-form-input-wrapper.checkout-input-error .checkout-form-input {
    border-color: #e74c3c;
    background-color: #fff5f5;
}

.checkout-form-input-wrapper.checkout-input-valid .checkout-form-input {
    border-color: #27ae60;
    background-color: #f0fff4;
}

.checkout-form-group.checkout-input-error .checkout-form-input {
    border-color: #e74c3c;
    background-color: #fff5f5;
}

.checkout-form-group.checkout-input-valid .checkout-form-input {
    border-color: #27ae60;
    background-color: #f0fff4;
}

.checkout-form-group.checkout-input-error .checkout-form-input-wrapper .checkout-form-input {
    border-color: #e74c3c;
    background-color: #fff5f5;
}

.checkout-form-group.checkout-input-valid .checkout-form-input-wrapper .checkout-form-input {
    border-color: #27ae60;
    background-color: #f0fff4;
}

.checkout-form-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.checkout-handsfree-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.checkout-checkbox-group {
    margin-bottom: 1rem;
}

.checkout-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 1rem;
    color: #333;
}

.checkout-checkbox {
    display: none;
}

.checkout-checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkout-checkbox:checked + .checkout-checkbox-custom {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.checkout-checkbox:checked + .checkout-checkbox-custom::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkout-checkbox-checked {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.checkout-checkbox-checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkout-link {
    color: #112846;
    text-decoration: underline;
    font-size: 0.9rem;
}

.checkout-insurance-section {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.checkout-validate-btn {
    width: 100%;
    padding: 1rem;
    background-color: #666;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.checkout-validate-btn:hover {
    background-color: #555;
}

@media (max-width: 1024px) {
    .checkout-section {
        padding: 1rem;
    }

    .checkout-container {
        padding: 1.5rem;
    }

    .checkout-steps {
        flex-wrap: wrap;
    }

    .checkout-step-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .checkout-title {
        font-size: 2rem;
    }

    .checkout-progress {
        flex-direction: column;
        align-items: flex-start;
    }

    .checkout-steps {
        width: 100%;
    }

    .checkout-ticket-info {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Payment Section Styles */
.checkout-payment-section {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 2rem;
    border: 1px solid #112846;
}

.checkout-payment-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.checkout-payment-icons {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.checkout-payment-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.checkout-payment-icon-active {
    background-color: #112846;
    border-color: #112846;
}

.checkout-payment-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: white;
}

.checkout-payment-title-section {
    flex: 1;
}

.checkout-payment-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.25rem;
}

.checkout-payment-subtitle {
    font-size: 1rem;
    color: #666;
}

.checkout-payment-info {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.checkout-payment-warning {
    background-color: #fff9e6;
    border-left: 4px solid #ff9800;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    color: #e65100;
    font-size: 0.85rem;
    line-height: 1.5;
}

.checkout-payment-terms {
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.checkout-payment-terms .checkout-checkbox-text {
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkout-payment-form {
    margin-bottom: 1.5rem;
}

.checkout-payment-form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.checkout-payment-form-group {
    flex: 1;
}

.checkout-payment-form-group-full {
    flex: 1;
}

.checkout-payment-btn {
    width: 100%;
    padding: 1.25rem;
    background-color: #112846;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.checkout-payment-btn:hover:not(:disabled) {
    background-color: #0d1f35;
}

.checkout-payment-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Payment Success Modal */
.payment-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.payment-success-modal-active {
    opacity: 1;
    visibility: visible;
}

.payment-success-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.payment-success-modal-content {
    position: relative;
    background-color: white;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 10001;
}

.payment-success-modal-active .payment-success-modal-content {
    transform: scale(1);
}

.payment-success-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    animation: successIconAnimation 0.5s ease;
}

@keyframes successIconAnimation {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.payment-success-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: 'Raleway', sans-serif;
}

.payment-success-message {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: 'Raleway', sans-serif;
}

.payment-success-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #112846;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.payment-success-btn:hover {
    background-color: #0d1f35;
    transform: translateY(-2px);
}

.payment-success-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .payment-success-modal-content {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }

    .payment-success-title {
        font-size: 1.5rem;
    }

    .payment-success-message {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .payment-success-btn {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }

    .payment-success-icon svg {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 768px) {
    .checkout-payment-header {
        flex-direction: column;
    }

    .checkout-payment-form-row {
        flex-direction: column;
    }

    .checkout-payment-title {
        font-size: 1.5rem;
    }
}

/* Month Selection View Styles for Calendar Widget */
.booking-calendar-month-selector {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0.5rem 0;
}

.booking-calendar-year-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.booking-calendar-year {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
    margin: 0;
    text-align: center;
    flex: 1;
}

.booking-calendar-nav-btn.prev-year {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.booking-calendar-nav-btn.next-year {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.booking-calendar-months-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.booking-month-item {
    padding: 0.75rem 0.5rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    color: #666;
    background-color: #f5f5f5;
}

.booking-month-item-active {
    color: #1a1a1a;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.booking-month-item-active:hover {
    background-color: #f0f0f0;
}

.booking-month-item-selected {
    color: #ffffff;
    background-color: #d32f2f;
    border: 1px solid #d32f2f;
    font-weight: 600;
}

.booking-month-item-selected:hover {
    background-color: #b71c1c;
}

.booking-month-item-inactive {
    color: #b0b0b0;
    background-color: #fafafa;
    cursor: not-allowed;
    opacity: 0.5;
}

.booking-month-item-inactive:hover {
    background-color: #fafafa;
}

/* Responsive adjustments for month selector */
@media (max-width: 768px) {
    .booking-calendar-months-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .booking-month-item {
        padding: 0.6rem 0.4rem;
        font-size: 0.85rem;
    }
    
    .booking-calendar-year {
        font-size: 1rem;
    }
}


