@font-face {
    font-family: 'LouvreSerif';
    src: url('fonts/LouvreSerif-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    padding-bottom: 80px;
    background-color: #000000;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.header {
    width: 100%;
    position: relative;
}

.header--tickets {
    background-color: #000000;
}

.header__top--tickets {
    background-color: #000000;
    border-bottom: 1px solid #333;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.header__logo--tickets {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    flex: 0 0 auto;
}

.header__logo--tickets svg {
    width: 340px;
    height: 65px;
}

.header__menu-toggle--tickets {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10;
}

.header__langues--tickets {
    display: flex;
    align-items: center;
    z-index: 10;
}

.tickets-section {
    width: 100%;
    min-height: 100vh;
    background-color: #ffffff;
    display: flex;
}

.tickets-section__container {
    width: 100%;
    display: flex;
    min-height: 100vh;
}

.tickets-section__left {
    width: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.tickets-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tickets-section__right {
    width: 50%;
    background-color: #ffffff;
    padding: 4rem 3rem;
    overflow-y: visible;
}

/* Tickets Journey Steps */
.tickets-journey {
    margin-bottom: 3rem;
}

.tickets-journey__steps {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tickets-journey__step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tickets-journey__step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #666666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
}

.tickets-journey__step--active .tickets-journey__step-number {
    background-color: #000000;
    color: #ffffff;
}

.tickets-journey__step-text {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}

.tickets-journey__step:not(.tickets-journey__step--active) .tickets-journey__step-text {
    display: none;
}

/* Tickets Content */
.tickets-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.tickets-content__main {
    flex: 1;
    max-width: 600px;
}

.tickets-content__sidebar {
    width: 300px;
    flex-shrink: 0;
    min-height: 500px;
    position: sticky;
    top: 2rem;
    align-self: flex-start;
    height: fit-content;
    max-height: calc(100vh - 4rem);
}

/* Tickets Form Section */
.tickets-form-section {
    margin-bottom: 3rem;
}

.tickets-form-section__divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 2rem 0;
}

.tickets-form-section--disabled .tickets-form-section__content {
    display: none;
}

.tickets-form-section--disabled .tickets-time-slots {
    display: none;
}

.tickets-form-section--disabled .tickets-form-section__title {
    color: #999999;
}

.tickets-time-slots--hidden {
    display: none !important;
}

.tickets-form-section__title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.tickets-form-section__subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* Tickets Time Selection */
.tickets-time-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.tickets-time-warning {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tickets-time-warning--hidden {
    display: none;
}

.tickets-time-warning__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ff0000;
    flex-shrink: 0;
}

.tickets-time-warning__text {
    font-size: 12px;
    font-weight: 400;
    color: #999999;
    font-family: 'Montserrat', sans-serif;
}

.tickets-time-slots {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tickets-time-slots.tickets-time-slots--hidden {
    display: none !important;
}

.tickets-time-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tickets-time-group__title {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.tickets-time-group__slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.tickets-time-slot {
    padding: 0.75rem 1rem;
    background-color: #f5f5f5;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.tickets-time-slot:hover {
    background-color: #e0e0e0;
}

.tickets-time-slot--selected {
    background-color: #000000;
    color: #ffffff;
    font-weight: 600;
}

.tickets-time-slot--booked {
    background-color: #ffebee;
    color: #c62828;
    cursor: not-allowed;
    opacity: 0.7;
    position: relative;
}

.tickets-time-slot--booked::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 0L12.5 7.5L20 10L12.5 12.5L10 20L7.5 12.5L0 10L7.5 7.5Z' fill='%23c62828' opacity='0.3'/%3E%3C/svg%3E");
    background-size: 12px 12px;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

.tickets-time-slot--booked:hover {
    background-color: #ffebee;
}

.tickets-time-slot--past {
    background-color: #f5f5f5;
    color: #999999;
    cursor: not-allowed;
    opacity: 0.5;
    text-decoration: line-through;
}

.tickets-time-slot--past:hover {
    background-color: #f5f5f5;
}

.tickets-time-slot:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

/* Tickets Selection */
.tickets-info-box {
    background-color: #f5f5f5;
    border-left: 4px solid #008573;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.tickets-info-box__icon {
    flex-shrink: 0;
    color: #000000;
    margin-top: 0.125rem;
}

.tickets-info-box__icon svg {
    width: 20px;
    height: 20px;
}

.tickets-info-box__text {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
}

.tickets-info-box__link {
    color: #008573;
    text-decoration: underline;
    font-weight: 500;
}

.tickets-info-box__link:hover {
    color: #0a4f51;
}

.tickets-ticket-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.tickets-ticket-item__name {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tickets-ticket-item__controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.tickets-ticket-item__price {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    min-width: 40px;
    text-align: right;
}

.tickets-ticket-item__button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-family: 'Montserrat', sans-serif;
    padding: 0;
}

.tickets-ticket-item__button:hover:not(:disabled) {
    background-color: #e0e0e0;
}

.tickets-ticket-item__button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.tickets-ticket-item__input {
    width: 60px;
    height: 32px;
    border: 1px solid #000000;
    border-radius: 4px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    padding: 0;
}

.tickets-ticket-item__input:focus {
    outline: none;
    border-color: #008573;
}

.tickets-rate-item {
    margin-bottom: 1.5rem;
}

.tickets-rate-item__header {
    margin-bottom: 0.75rem;
}

.tickets-rate-item__title-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tickets-rate-item__title {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.tickets-rate-item__info {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #000000;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.tickets-rate-item__info svg {
    width: 12px;
    height: 12px;
    color: #000000;
}

.tickets-rate-item__description-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tickets-rate-item__description {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    flex: 1;
}

.tickets-rate-item__mandatory {
    font-size: 12px;
    font-weight: 400;
    color: #ff0000;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
}

.tickets-rate-item__controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    justify-content: flex-end;
    margin-top: 1rem;
}

.tickets-rate-item__price {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    min-width: 45px;
    text-align: right;
}

.tickets-rate-item__button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-family: 'Montserrat', sans-serif;
    padding: 0;
}

.tickets-rate-item__button:hover:not(:disabled) {
    background-color: #e0e0e0;
}

.tickets-rate-item__button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.tickets-rate-item__input {
    width: 60px;
    height: 32px;
    border: 1px solid #000000;
    border-radius: 4px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    padding: 0;
}

.tickets-rate-item__input:focus {
    outline: none;
    border-color: #008573;
}

.tickets-rate-item__divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 1.5rem 0;
}

.tickets-ticket-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.tickets-ticket-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.tickets-ticket-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.tickets-ticket-card__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.tickets-ticket-card__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tickets-ticket-card__label {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
}

.tickets-ticket-card__input {
    width: 100%;
    height: 40px;
    border: 1px solid #000000;
    border-radius: 4px;
    padding: 0 0.75rem;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
}

.tickets-ticket-card__input:focus {
    outline: none;
    border-color: #008573;
}

.tickets-ticket-card__input::placeholder {
    color: #999999;
}

/* Tickets Calendar */
.tickets-calendar {
    background-color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 1.5rem;
}

.tickets-calendar__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.tickets-calendar__nav-button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #000000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: #ffffff;
}

.tickets-calendar__nav-button:disabled {
    background-color: #f5f5f5;
    color: #666666;
}


.tickets-calendar__nav-button:disabled {
    cursor: not-allowed;
}

.tickets-calendar__nav-button svg {
    width: 16px;
    height: 16px;
}

.tickets-calendar__month-year {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.tickets-calendar__month {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.tickets-calendar__year {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    font-family: 'Montserrat', sans-serif;
}

.tickets-calendar__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tickets-calendar__weekday {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #666666;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    padding: 0.5rem 0;
}

.tickets-calendar__days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
}

.tickets-calendar__day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.2s ease;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.tickets-calendar__day:hover:not(.tickets-calendar__day--disabled):not(.tickets-calendar__day--selected) {
    border: 2px solid #000000;
    border-radius: 50%;
    background-color: transparent;
    width: 32px;
    height: 32px;
    margin: auto;
}

.tickets-calendar__day--selected {
    background-color: #000000;
    color: #ffffff;
    font-weight: 600;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    margin: auto;
}

.tickets-calendar__day--disabled {
    color: #cccccc;
    text-decoration: line-through;
    cursor: not-allowed;
}

.tickets-calendar__day--empty {
    visibility: hidden;
}

/* Tickets Basket */
.tickets-basket {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tickets-basket__header {
    padding: 1.5rem 2rem;
    text-align: center;
}

.tickets-basket__title {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tickets-basket__divider {
    border-top: 1px dashed #e0e0e0;
    margin: 0;
}

.tickets-basket__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tickets-basket__item-name {
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 0.5rem 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
    letter-spacing: 0.3px;
}

.tickets-basket__item-status {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

.tickets-basket__next-button {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background-color: #666666;
    color: #ffffff;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 0.5rem;
}

.tickets-basket__next-button:not(:disabled) {
    background-color: #333333;
    cursor: pointer;
}

.tickets-basket__next-button:not(:disabled):hover {
    background-color: #000000;
}

.tickets-basket__next-button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

/* Tablet styles (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .tickets-section__container {
        flex-direction: column;
    }

    .tickets-section__left {
        width: 100%;
        height: 450px;
        padding: 0;
    }

    .tickets-section__right {
        width: 100%;
        padding: 3rem 2.5rem;
    }

    .tickets-content {
        flex-direction: row;
        gap: 2.5rem;
        max-width: 900px;
        margin: 0 auto;
    }

    .tickets-content__main {
        flex: 1;
        max-width: 550px;
    }

    .tickets-content__sidebar {
        width: 320px;
        flex-shrink: 0;
        position: sticky;
        top: 2rem;
        align-self: flex-start;
    }

    .tickets-calendar {
        padding: 1.75rem;
    }

    .tickets-calendar__header {
        gap: 5rem;
    }

    .tickets-time-group__slots {
        grid-template-columns: repeat(4, 1fr);
    }

    .tickets-ticket-card__fields {
        grid-template-columns: 1fr 1fr;
    }

    .tickets-basket__header {
        padding: 1.5rem 2rem;
    }

    .tickets-basket__content {
        padding: 2rem;
    }
}

/* Mobile and tablet portrait (up to 1024px) */
@media (max-width: 1024px) {
    .tickets-section__container {
        flex-direction: column;
    }

    .tickets-section__left {
        width: 100%;
        height: 400px;
        padding: 0;
    }

    .tickets-section__right {
        width: 100%;
        padding: 2rem 1.5rem;
    }

    .tickets-content {
        flex-direction: column;
    }

    .tickets-content__sidebar {
        width: 100%;
        position: static;
    }

    .tickets-basket {
        position: static;
    }
}

@media (max-width: 768px) {
    .header__top--tickets {
        padding: 1rem;
    }

    .header__logo--tickets svg {
        width: 240px;
        height: auto;
    }

    .tickets-section__left {
        display: none;
    }

    .tickets-section__right {
        padding: 2rem 1.5rem;
        display: flex;
        justify-content: center;
    }

    .tickets-content {
        gap: 2rem;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .tickets-content__main {
        width: 100%;
        max-width: 100%;
    }

    .tickets-content__sidebar {
        width: 100%;
        max-width: 100%;
    }

    .tickets-journey__steps {
        gap: 0.5rem;
    }

    .tickets-journey__step-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .tickets-calendar {
        padding: 1.5rem;
    }

    /* Calendar mobile styles */
    .tickets-calendar__header {
        gap: 2rem;
        margin-bottom: 1rem;
    }

    .tickets-calendar__nav-button {
        width: 28px;
        height: 28px;
    }

    .tickets-calendar__nav-button svg {
        width: 14px;
        height: 14px;
    }

    .tickets-calendar__month {
        font-size: 14px;
    }

    .tickets-calendar__year {
        font-size: 12px;
    }

    .tickets-calendar__weekday {
        font-size: 10px;
        padding: 0.25rem 0;
    }

    .tickets-calendar__day {
        font-size: 16px;
    }

    .tickets-calendar__day:hover:not(.tickets-calendar__day--disabled):not(.tickets-calendar__day--selected) {
        width: 28px;
        height: 28px;
    }

    .tickets-calendar__day--selected {
        width: 28px;
        height: 28px;
    }

    /* Form sections mobile */
    .tickets-form-section {
        margin-bottom: 2rem;
    }

    .tickets-form-section__title {
        font-size: 20px;
        margin-bottom: 1rem;
    }

    .tickets-form-section__divider {
        margin: 1.5rem 0;
    }

    /* Time selection mobile */
    .tickets-time-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .tickets-time-group__slots {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .tickets-time-slot {
        padding: 0.625rem 0.75rem;
        font-size: 13px;
    }

    .tickets-time-warning {
        font-size: 11px;
    }

    .tickets-time-warning__text {
        font-size: 11px;
    }

    /* Info box mobile */
    .tickets-info-box {
        padding: 1.25rem 1.5rem;
        margin-bottom: 1.5rem;
        flex-direction: column;
        gap: 0.75rem;
    }

    .tickets-info-box__text {
        font-size: 13px;
        line-height: 1.6;
    }

    /* Rate items mobile */
    .tickets-rate-item {
        margin-bottom: 1.25rem;
    }

    .tickets-rate-item__title {
        font-size: 14px;
    }

    .tickets-rate-item__description {
        font-size: 13px;
        line-height: 1.5;
    }

    .tickets-rate-item__mandatory {
        font-size: 12px;
        margin-top: 0.5rem;
    }

    .tickets-rate-item__controls {
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .tickets-rate-item__price {
        font-size: 16px;
        font-weight: 700;
    }

    .tickets-rate-item__button {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .tickets-rate-item__input {
        width: 50px;
        height: 36px;
        font-size: 14px;
    }

    .tickets-rate-item__divider {
        margin: 1.25rem 0;
    }

    /* Ticket cards mobile */
    .tickets-ticket-cards {
        gap: 1.25rem;
        margin: 1.25rem 0;
    }

    .tickets-ticket-card {
        padding: 1.5rem;
    }

    .tickets-ticket-card__title {
        font-size: 14px;
        margin-bottom: 1.25rem;
    }

    .tickets-ticket-card__fields {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tickets-ticket-card__label {
        font-size: 13px;
    }

    .tickets-ticket-card__input {
        height: 44px;
        font-size: 14px;
        padding: 0 1rem;
    }

    /* Basket mobile */
    .tickets-basket__header {
        padding: 1.5rem 1.75rem;
    }

    .tickets-basket__title {
        font-size: 14px;
    }

    .tickets-basket__content {
        padding: 1.75rem;
        gap: 0.875rem;
    }

    .tickets-basket__item-name {
        font-size: 20px;
    }

    .tickets-basket__item-status {
        font-size: 13px;
    }

    .tickets-basket__next-button {
        padding: 1rem 1.5rem;
        font-size: 15px;
        margin-top: 0.75rem;
    }

    /* Content layout mobile - already handled above */
}

/* Tablet landscape optimization (768px - 900px) */
@media (min-width: 768px) and (max-width: 900px) {
    .tickets-section__right {
        padding: 2.5rem 2rem;
    }

    .tickets-content {
        flex-direction: row;
        gap: 2rem;
        max-width: 800px;
        margin: 0 auto;
    }

    .tickets-content__main {
        flex: 1;
        max-width: 480px;
    }

    .tickets-content__sidebar {
        width: 280px;
        flex-shrink: 0;
        position: sticky;
        top: 2rem;
        align-self: flex-start;
    }

    .tickets-time-group__slots {
        grid-template-columns: repeat(4, 1fr);
    }

    .tickets-ticket-card__fields {
        grid-template-columns: 1fr 1fr;
    }
}

/* Small mobile devices (up to 480px) */
@media (max-width: 480px) {
    .tickets-section__right {
        padding: 1.5rem 1.25rem;
        display: flex;
        justify-content: center;
    }

    .tickets-content {
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .tickets-calendar {
        padding: 1.25rem;
    }

    .tickets-calendar__header {
        gap: 1.5rem;
    }

    .tickets-calendar__nav-button {
        width: 24px;
        height: 24px;
    }

    .tickets-calendar__nav-button svg {
        width: 12px;
        height: 12px;
    }

    .tickets-calendar__month {
        font-size: 12px;
    }

    .tickets-calendar__year {
        font-size: 11px;
    }

    .tickets-calendar__weekday {
        font-size: 9px;
        padding: 0.25rem 0;
    }

    .tickets-calendar__day {
        font-size: 11px;
    }

    .tickets-calendar__day:hover:not(.tickets-calendar__day--disabled):not(.tickets-calendar__day--selected) {
        width: 24px;
        height: 24px;
    }

    .tickets-calendar__day--selected {
        width: 24px;
        height: 24px;
    }

    .tickets-form-section {
        margin-bottom: 1.5rem;
    }

    .tickets-form-section__title {
        font-size: 18px;
        margin-bottom: 0.875rem;
    }

    .tickets-form-section__divider {
        margin: 1.25rem 0;
    }

    .tickets-time-group__slots {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .tickets-time-slot {
        padding: 0.625rem 0.5rem;
        font-size: 12px;
    }

    .tickets-info-box {
        padding: 1rem 1.25rem;
        margin-bottom: 1.25rem;
    }

    .tickets-info-box__text {
        font-size: 12px;
    }

    .tickets-rate-item {
        margin-bottom: 1rem;
    }

    .tickets-rate-item__title {
        font-size: 13px;
    }

    .tickets-rate-item__description {
        font-size: 12px;
    }

    .tickets-rate-item__mandatory {
        font-size: 11px;
    }

    .tickets-rate-item__price {
        font-size: 15px;
        font-weight: 700;
    }

    .tickets-rate-item__button {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .tickets-rate-item__input {
        width: 45px;
        height: 32px;
        font-size: 13px;
    }

    .tickets-ticket-card {
        padding: 1.25rem;
    }

    .tickets-ticket-card__title {
        font-size: 13px;
        margin-bottom: 1rem;
    }

    .tickets-ticket-card__label {
        font-size: 12px;
    }

    .tickets-ticket-card__input {
        height: 42px;
        font-size: 13px;
        padding: 0 0.875rem;
    }

    .tickets-basket__header {
        padding: 1.25rem 1.5rem;
    }

    .tickets-basket__title {
        font-size: 13px;
    }

    .tickets-basket__content {
        padding: 1.5rem;
        gap: 0.75rem;
    }

    .tickets-basket__item-name {
        font-size: 18px;
    }

    .tickets-basket__item-status {
        font-size: 12px;
    }

    .tickets-basket__next-button {
        padding: 0.875rem 1.25rem;
        font-size: 14px;
        margin-top: 0.5rem;
    }
}

/* Extra small devices (up to 360px) */
@media (max-width: 360px) {
    .tickets-section__right {
        padding: 1.25rem 1rem;
        display: flex;
        justify-content: center;
    }

    .tickets-content {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .tickets-calendar {
        padding: 1rem;
    }

    .tickets-calendar__header {
        gap: 1rem;
    }

    .tickets-form-section__title {
        font-size: 16px;
    }

    .tickets-time-group__slots {
        gap: 0.375rem;
    }

    .tickets-time-slot {
        padding: 0.5rem 0.375rem;
        font-size: 11px;
    }

    .tickets-info-box {
        padding: 0.875rem 1rem;
    }

    .tickets-ticket-card {
        padding: 1rem;
    }

    .tickets-basket__header {
        padding: 1rem 1.25rem;
    }

    .tickets-basket__content {
        padding: 1.25rem;
    }
}

.header__top {
    width: 100%;
    height: 91px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    background-color: #000000;
    border-bottom: 1px solid #333;
    position: relative;
}

.header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.header__logo-link {
    display: flex;
    align-items: center;
    color: #ffffff;
}

.header__logo-link a {
    color: #ffffff;
}

.header__logo-svg {
    height: 31px;
    width: auto;
    display: block;
    color: #ffffff;
}

.header__logo-svg path {
    fill: currentColor;
}

.header__langues {
    display: flex;
    align-items: center;
    order: -1;
}

.popover {
    position: relative;
}

.popover__button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: opacity 0.2s ease;
}

.popover__button:hover {
    opacity: 0.8;
}

.popover__chevron {
    width: 1em;
    height: 1em;
    fill: currentColor;
    transition: transform 0.2s ease;
}

.popover__button[aria-expanded="true"] .popover__chevron {
    transform: rotate(180deg);
}

.header__links {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

a.button {
    text-decoration: none;
    color: inherit;
}

.button-small {
    font-size: 14px;
    padding: 0.5rem 1rem;
    min-height: 36px;
}

.button-colored {
    background-color: var(--color, #008573);
    color: #fff;
    border-radius: 20px;
}

.button-colored:hover {
    background-color: var(--color-hover, #0a4f51);
}

.button__content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.button__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.button__icon-left {
    margin-right: 0.5rem;
}

.button__label {
    white-space: nowrap;
    font-weight: 700;
}

.svg-wrapper {
    display: inline-block;
    width: 1em;
    height: 1em;
    fill: currentColor;
    flex-shrink: 0;
}

/* Burger Menu Toggle Button */
.header__menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
    width: 32px;
    height: 32px;
    transition: opacity 0.2s ease;
    order: -1;
}

.header__menu-toggle:hover {
    opacity: 0.8;
}

.header__menu-icon {
    width: 32px;
    height: 32px;
    stroke: currentColor;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #1a1a1a;
    z-index: 2000;
    display: none;
    overflow-y: auto;
}

.menu-overlay.menu-overlay--open {
    display: flex;
    flex-direction: column;
}

.menu-overlay__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    border-bottom: 1px solid #333;
}

.menu-overlay__close {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
    width: 32px;
    height: 32px;
    transition: opacity 0.2s ease;
}

.menu-overlay__close:hover {
    opacity: 0.8;
}

.menu-overlay__close svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

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

.menu-overlay__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.menu-overlay__nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2rem;
}

.menu-overlay__nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.2s ease;
    border-bottom: 1px solid #333;
}

.menu-overlay__nav-link:last-child {
    border-bottom: none;
}

.menu-overlay__nav-link:hover {
    opacity: 0.8;
}

.menu-overlay__nav-text {
    flex: 1;
}

.menu-overlay__nav-chevron {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    flex-shrink: 0;
}

.menu-overlay__divider {
    width: 100%;
    height: 1px;
    background-color: #333;
    margin: 2rem 0;
}

.menu-overlay__tickets {
    display: flex;
    justify-content: flex-start;
    margin-bottom: auto;
}

.menu-overlay__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    margin-top: auto;
}

.menu-overlay__logo-text {
    font-family: 'LouvreSerif', Georgia, Times New Roman, serif;
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .menu-overlay__content {
        padding: 1.5rem;
    }
    
    .menu-overlay__header {
        padding: 1.5rem;
    }
    
    .menu-overlay__nav-link {
        font-size: 14px;
    }
    
    .menu-overlay__logo-text {
        font-size: 20px;
    }
}

.navigation {
    width: 100%;
    background-color: #000000;
    border-bottom: 1px solid #333;
    position: relative;
}

.horizontal-list {
    width: 100%;
    overflow: hidden;
}

.horizontal-list-overflow-visible {
    overflow: visible;
}

.horizontal-list__scrollcontainer {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.horizontal-list__scrollcontainer::-webkit-scrollbar {
    display: none;
}

.horizontal-list__scrollcontainer-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.horizontal-list__track {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 62px;
    gap: 0;
}

.horizontal-list__item {
    display: flex;
    align-items: center;
    list-style: none;
    position: relative;
    height: 100%;
}

.navigation__link {
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    height: 100%;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    cursor: pointer;
}

.navigation__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background-color: #ffffff;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.navigation__link:hover::after {
    width: 100%;
    transform: translateX(-50%) scaleX(1);
}

.navigation__text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-transform: uppercase;
}

.navigation__text-uppercase {
    font-weight: 700;
}

@media (max-width: 768px) {
    .navigation {
        display: none;
    }
    
    .header__menu-toggle {
        display: flex;
    }
    
    .header__langues {
        display: none;
    }
}

@media (min-width: 769px) {
    .header__menu-toggle {
        display: none;
    }
}

/* Navigation Dropdown */
.navigation-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    z-index: 1000;
    display: none;
    padding: 48px 0;
    max-height: calc(100vh - 153px);
    overflow-y: auto;
}

.navigation-dropdown.navigation-dropdown--open {
    display: block;
}

.navigation-dropdown__close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    transition: opacity 0.2s ease;
    width: 24px;
    height: 24px;
}

.navigation-dropdown__close:hover {
    opacity: 0.7;
}

.navigation-dropdown__close svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.navigation-dropdown__header {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: opacity 0.2s ease;
    color: #ffffff;
}

.navigation-dropdown__header:hover {
    opacity: 0.8;
}

.navigation-dropdown__header--burger-only {
    display: none;
}

.navigation-dropdown--from-burger .navigation-dropdown__header--burger-only {
    display: flex;
}

.navigation-dropdown__back-icon {
    width: 20px;
    height: 20px;
    fill: #ffffff;
    color: #ffffff;
    flex-shrink: 0;
}

.navigation-dropdown__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.2;
    pointer-events: none;
}

.navigation-dropdown__content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0;
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 80px;
}

.navigation-dropdown__menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-right: 48px;
    min-width: 200px;
}

#explore-dropdown .navigation-dropdown__content {
    justify-items: center;
    grid-template-columns: 1fr;
}

#explore-dropdown .navigation-dropdown__menu {
    padding-right: 0;
    margin: 0 auto;
}

.navigation-dropdown__menu-link {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding: 6px 0;
    display: block;
    transition: opacity 0.2s ease;
    line-height: 1.56;
}

.navigation-dropdown__menu-link:hover {
    text-decoration: underline;
}

.navigation-dropdown__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    flex: 1;
    max-width: 600px;
}

.navigation-dropdown__card {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    overflow: hidden;
}

.navigation-dropdown__card-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 35%;
    overflow: hidden;
    background-color: #f6f6f6;
}

.navigation-dropdown__card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navigation-dropdown__card-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: #ffffff;
    color: #000000;
    padding: 3px 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    line-height: 1.5;
}

.navigation-dropdown__card-content {
    padding: 12px 0;
    color: #ffffff;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.navigation-dropdown__card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #ffffff;
    line-height: 1.56;
}

.navigation-dropdown__card-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.57;
    color: #ffffff;
    margin: 0;
}

/* Explore Dropdown Specific Styles - Only from Burger Menu */
#explore-dropdown.navigation-dropdown--from-burger .navigation-dropdown__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 2rem 2rem 2rem;
}

#explore-dropdown.navigation-dropdown--from-burger .navigation-dropdown__header {
    padding: 1.5rem 2rem;
}

#explore-dropdown.navigation-dropdown--from-burger .navigation-dropdown__cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    order: 1;
}

#explore-dropdown.navigation-dropdown--from-burger .navigation-dropdown__card {
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
}

#explore-dropdown.navigation-dropdown--from-burger .navigation-dropdown__card-image-wrapper {
    width: 120px;
    min-width: 120px;
    height: 120px;
    padding-bottom: 0;
    flex-shrink: 0;
    position: relative;
}

#explore-dropdown.navigation-dropdown--from-burger .navigation-dropdown__card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#explore-dropdown.navigation-dropdown--from-burger .navigation-dropdown__card-tag {
    display: none;
}

#explore-dropdown.navigation-dropdown--from-burger .navigation-dropdown__card-content {
    padding: 0;
    flex: 1;
}

#explore-dropdown.navigation-dropdown--from-burger .navigation-dropdown__card-title {
    margin-bottom: 0.5rem;
    text-decoration: underline;
}

#explore-dropdown.navigation-dropdown--from-burger .navigation-dropdown__menu {
    order: 2;
    padding-right: 0;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Exhibitions Dropdown Specific Styles - Only from Burger Menu */
#exhibitions-dropdown.navigation-dropdown--from-burger .navigation-dropdown__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 2rem 2rem 2rem;
}

#exhibitions-dropdown.navigation-dropdown--from-burger .navigation-dropdown__header {
    padding: 1.5rem 2rem;
}

#exhibitions-dropdown.navigation-dropdown--from-burger .navigation-dropdown__cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    order: 1;
}

#exhibitions-dropdown.navigation-dropdown--from-burger .navigation-dropdown__card {
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
}

#exhibitions-dropdown.navigation-dropdown--from-burger .navigation-dropdown__card-image-wrapper {
    width: 120px;
    min-width: 120px;
    height: 120px;
    padding-bottom: 0;
    flex-shrink: 0;
    position: relative;
}

#exhibitions-dropdown.navigation-dropdown--from-burger .navigation-dropdown__card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#exhibitions-dropdown.navigation-dropdown--from-burger .navigation-dropdown__card-tag {
    display: none;
}

#exhibitions-dropdown.navigation-dropdown--from-burger .navigation-dropdown__card-content {
    padding: 0;
    flex: 1;
}

#exhibitions-dropdown.navigation-dropdown--from-burger .navigation-dropdown__card-title {
    margin-bottom: 0.5rem;
    text-decoration: underline;
}

#exhibitions-dropdown.navigation-dropdown--from-burger .navigation-dropdown__menu {
    order: 2;
    padding-right: 0;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media (max-width: 1024px) {
    .navigation-dropdown {
        padding: 48px 0;
    }
    
    .navigation-dropdown__content {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 32px;
    }
    
    .navigation-dropdown__menu {
        flex-direction: row;
        padding-right: 0;
        padding-bottom: 0;
        gap: 24px;
        min-width: auto;
    }
    
    .navigation-dropdown__cards {
        grid-template-columns: 1fr;
    }
}

.home-cover {
    width: 100%;
    position: relative;
}

.home-cover__content {
    width: 100%;
    aspect-ratio: 1920 / 600;
    position: relative;
    overflow: hidden;
}

.home-cover__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-cover__visitor-info-wrapper {
    position: relative;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: flex-end;
    padding-right: 0;
    margin-top: -90px;
    margin-bottom: -90px;
}

.home-cover__visitor-info {
    position: relative;
}

.encart-insert-visitor {
    display: flex;
    align-items: center;
    background-color: #000000;
    padding: 1.5rem;
    gap: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    min-width: 600px;
}

.encart-insert-visitor__left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.encart-insert-visitor__title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.2;
}

.encart-insert-visitor__status {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

.encart-insert-visitor__hours {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.encart-insert-visitor__arrow {
    width: 1em;
    height: 1em;
    fill: currentColor;
    color: #ffffff;
}

.encart-insert-visitor__separator {
    width: 1px;
    height: 80px;
    background-color: #333333;
    flex-shrink: 0;
}

.encart-insert-visitor__right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-shrink: 0;
}

.encart-insert-visitor__button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
    color: inherit;
}

.encart-insert-visitor__button-primary {
    background-color: #008573;
    color: #ffffff;
}

.encart-insert-visitor__button-primary:hover {
    background-color: #0a4f51;
}

.encart-insert-visitor__button-secondary {
    background-color: #ffffff;
    color: #000000;
}

.encart-insert-visitor__button-secondary:hover {
    background-color: #f5f5f5;
}

.encart-insert-visitor__button-icon {
    width: 1em;
    height: 1em;
    fill: currentColor;
    flex-shrink: 0;
}

.encart-insert-visitor__button-label {
    white-space: nowrap;
}

.block-container {
    width: 100%;
    padding: 3rem 0;
}

.block-container-smoke-white {
    background-color: #f5f5f5;
}

.home-simple-layout {
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 2rem;
}

.home-info-block {
    width: 100%;
    min-height: 335px;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 0;
}

.home-info-block__top {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
}

.home-info-block__icon {
    width: 48px;
    height: 48px;
    color: #000000;
    display: inline-block;
    fill: currentColor;
    flex-shrink: 0;
}

.home-info-block__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.home-info-block__title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin: 0;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.home-info-block__text {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin: 0;
}

.home-info-block__link {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 0.5rem;
}

.home-info-block__link:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .header__top {
        padding: 0 1rem;
        height: auto;
        min-height: 91px;
        flex-wrap: wrap;
    }

    .header__logo {
        flex: 0 0 auto;
    }

    .header__langues {
        margin-right: 1rem;
    }

    .horizontal-list__track {
        height: auto;
        min-height: 62px;
        flex-wrap: wrap;
    }

    .navigation__link {
        padding: 0 1rem;
    }

    .home-cover__content {
        aspect-ratio: 16 / 10;
        min-height: 300px;
    }
}

@media (max-width: 500px) {
    .header__top {
        padding: 0 0.75rem;
        min-height: 70px;
        height: 70px;
    }

    .header__menu-toggle {
        width: 28px;
        height: 28px;
        padding: 0.375rem;
    }

    .header__menu-icon {
        width: 24px;
        height: 24px;
    }

    .header__logo-svg {
        height: 24px;
        max-width: 120px;
    }

    .header__langues {
        margin-right: 0.5rem;
    }

    .popover__button {
        font-size: 12px;
        padding: 0.375rem 0.75rem;
    }

    .button-small {
        font-size: 12px;
        padding: 0.375rem 0.75rem;
        min-height: 32px;
    }

    .button__icon {
        width: 14px;
        height: 14px;
    }

    .button__icon-left {
        margin-right: 0.375rem;
    }

    .button__label {
        font-size: 12px;
    }
}

@media (max-width: 444px) {
    .header__top {
        padding: 0 0.5rem;
        min-height: 60px;
        height: 60px;
    }

    .header__menu-toggle {
        width: 24px;
        height: 24px;
        padding: 0.25rem;
    }

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

    .header__logo-svg {
        height: 20px;
        max-width: 100px;
    }

    .header__langues {
        margin-right: 0.25rem;
    }

    .popover__button {
        font-size: 11px;
        padding: 0.25rem 0.5rem;
        gap: 0.25rem;
    }

    .popover__chevron {
        width: 0.875em;
        height: 0.875em;
    }

    .button-small {
        font-size: 11px;
        padding: 0.25rem 0.5rem;
        min-height: 28px;
    }

    .button__icon {
        width: 12px;
        height: 12px;
    }

    .button__icon-left {
        margin-right: 0.25rem;
    }

    .button__label {
        font-size: 11px;
    }
}

@media (max-width: 350px) {
    .header__top {
        padding: 0 0.375rem;
        min-height: 55px;
        height: 55px;
    }

    .header__menu-toggle {
        width: 20px;
        height: 20px;
        padding: 0.2rem;
    }

    .header__menu-icon {
        width: 18px;
        height: 18px;
    }

    .header__logo-svg {
        height: 18px;
        max-width: 85px;
    }

    .header__langues {
        margin-right: 0.2rem;
    }

    .popover__button {
        font-size: 10px;
        padding: 0.2rem 0.4rem;
        gap: 0.2rem;
    }

    .popover__chevron {
        width: 0.75em;
        height: 0.75em;
    }

    .button-small {
        font-size: 10px;
        padding: 0.2rem 0.4rem;
        min-height: 26px;
    }

    .button__icon {
        width: 11px;
        height: 11px;
    }

    .button__icon-left {
        margin-right: 0.2rem;
    }

    .button__label {
        font-size: 10px;
    }

    .block-container {
        padding: 2rem 0;
    }

    .home-simple-layout {
        padding: 0 1rem;
    }

    .block-container {
        padding: 1.5rem 0;
    }

    .home-info-block {
        min-height: auto;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }

    .home-info-block__icon {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }

    .home-info-block__content {
        gap: 0.75rem;
    }

    .home-info-block__title {
        font-size: 18px;
        line-height: 1.3;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .home-info-block__text {
        font-size: 12px;
        line-height: 1.5;
    }

    .home-info-block__link {
        font-size: 12px;
        margin-top: 0.25rem;
    }
}

@media (max-width: 650px) {
    .home-cover__visitor-info-wrapper {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .home-cover__visitor-info-wrapper {
        margin-top: -60px;
        margin-bottom: -60px;
    }

    .encart-insert-visitor {
        min-width: 450px;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .encart-insert-visitor__title {
        font-size: 20px;
    }

    .encart-insert-visitor__hours {
        font-size: 16px;
    }

    .encart-insert-visitor__button {
        padding: 0.875rem 1.5rem;
        font-size: 15px;
    }

    .encart-insert-visitor__separator {
        height: 80px;
    }
}

.highlights {
    width: 100%;
    background-color: #ffffff;
    padding: 4rem 0;
}

.highlights__container {
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 2rem;
}

.highlights__title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 3rem 0;
    font-family: 'LouvreSerif', Georgia, 'Times New Roman', serif;
}

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

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

.highlights__item-wide {
    grid-column: 1;
}

.highlights__image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 4px;
}

.highlights__image-wrapper-small {
    aspect-ratio: 1;
}

.highlights__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.highlights__images-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

.highlights__tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
    background-color: #008573;
    color: #ffffff;
}

.highlights__tag-exhibition {
    background-color: #008573;
}

.highlights__tag-family {
    background-color: #008573;
}

.highlights__tag-trail {
    background-color: #008573;
}

.highlights__tag-tours {
    background-color: #008573;
}

.highlights__item-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.2;
}

.highlights__item-text {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin: 0;
}

.highlights__sub-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0;
}

.highlights__sub-item .highlights__item-title {
    font-size: 24px;
    margin-bottom: 0.5rem;
}

.highlights__sub-item .highlights__item-text {
    margin: 0;
}

.highlights__sub-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.highlights__sub-text {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .highlights {
        padding: 2rem 0;
    }

    .highlights__container {
        padding: 0 1rem;
    }

    .highlights__title {
        font-size: 32px;
        margin-bottom: 2rem;
    }

    .highlights__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .highlights__item-wide {
        grid-column: 1;
    }

    .highlights__item-title {
        font-size: 20px;
    }

    .highlights__item-text {
        font-size: 14px;
    }

    .highlights__sub-title {
        font-size: 18px;
    }

    .highlights__sub-text {
        font-size: 14px;
    }
}

.louvre-plus {
    width: 100%;
    background-color: #1A1A1A;
    padding-top: 4rem;
    padding-bottom: 16rem;
    position: relative;
    z-index: 10;
}

.louvre-plus__container {
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 2rem;
}

.louvre-plus__title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 3rem 0;
    font-family: 'LouvreSerif', Georgia, 'Times New Roman', serif;
}

.louvre-plus__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.louvre-plus__item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.louvre-plus__image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.louvre-plus__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    flex: 1;
}

.louvre-plus__image-wrapper:hover .louvre-plus__image {
    transform: scale(1.05);
}

.louvre-plus__play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.louvre-plus__play-icon {
    width: 24px;
    height: 24px;
    color: #000000;
    fill: currentColor;
}

.louvre-plus__image-wrapper:hover .louvre-plus__play-button {
    opacity: 1;
}

.louvre-plus__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 5;
}

.louvre-plus__item-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
}

.louvre-plus__item-meta {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.louvre-plus__meta-icon {
    width: 1em;
    height: 1em;
    fill: currentColor;
    flex-shrink: 0;
}

.louvre-plus__navigation {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 100;
}

.louvre-plus__nav-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

.louvre-plus__nav-button:hover {
    opacity: 0.8;
}

.louvre-plus__nav-button--prev svg {
    width: 24px;
    height: 24px;
    fill: #999999;
}

.louvre-plus__nav-button--next svg {
    width: 24px;
    height: 24px;
    fill: #333333;
}

.louvre-plus__dots {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.louvre-plus__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background-color: #666666;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s ease;
}

.louvre-plus__dot--active {
    background-color: #ffffff;
}

.louvre-plus__dot:hover {
    background-color: #999999;
}

.louvre-plus__dot--active:hover {
    background-color: #ffffff;
}

@media (max-width: 1024px) {
    .louvre-plus {
        padding-bottom: 6rem;
    }

    .louvre-plus__navigation {
        display: flex;
    }

    .louvre-plus__container {
        padding: 0 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .louvre-plus__container::-webkit-scrollbar {
        display: none;
    }

    .louvre-plus__grid {
        display: flex;
        flex-direction: row;
        gap: 1.5rem;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 1rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .louvre-plus__grid::-webkit-scrollbar {
        display: none;
    }

    .louvre-plus__item {
        flex: 0 0 auto;
        width: calc(100vw - 2rem);
        scroll-snap-align: start;
    }
}

@media (max-width: 768px) {
    .louvre-plus {
        padding: 2rem 0 4rem 0;
    }

    .louvre-plus__title {
        font-size: 32px;
        margin-bottom: 2rem;
    }

    .louvre-plus__grid {
        gap: 1rem;
    }

    .louvre-plus__item {
        width: calc(100vw - 2rem);
    }

    .louvre-plus__item-title {
        font-size: 16px;
    }

    .louvre-plus__item-meta {
        font-size: 12px;
    }
}

.parallax-section {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    margin-top: -4rem;
}

.parallax-section__image-wrapper {
    width: 100%;
    height: 300%;
    position: relative;
    will-change: transform;
    margin: 0;
    padding: 0;
}

.parallax-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

.delve-into-louvre {
    width: 100%;
    background-color: #000000;
    padding: 4rem 0;
}

.delve-into-louvre__container {
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 2rem;
}

.delve-into-louvre__title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 3rem 0;
    text-align: center;
    font-family: 'LouvreSerif', Georgia, 'Times New Roman', serif;
}

.delve-into-louvre__grid-wrapper {
    position: relative;
    margin-bottom: 3rem;
    max-height: 1000px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .delve-into-louvre__grid-wrapper {
        max-height: 1100px;
    }
}

@media (min-width: 1200px) {
    .delve-into-louvre__grid-wrapper {
        max-height: none;
        overflow: visible;
    }
}

.delve-into-louvre__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 0.75rem;
    row-gap: 0.75rem;
    align-items: start;
}

.delve-into-louvre__fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.85) 30%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 2;
}

.delve-into-louvre__item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4 / 3;
    width: 100%;
}

.delve-into-louvre__item:nth-child(1),
.delve-into-louvre__item:nth-child(4),
.delve-into-louvre__item:nth-child(7),
.delve-into-louvre__item:nth-child(10) {
    margin-top: 0.75rem;
}

.delve-into-louvre__item:nth-child(2),
.delve-into-louvre__item:nth-child(5),
.delve-into-louvre__item:nth-child(8),
.delve-into-louvre__item:nth-child(11) {
    margin-top: 0;
}

.delve-into-louvre__item:nth-child(3),
.delve-into-louvre__item:nth-child(6),
.delve-into-louvre__item:nth-child(9),
.delve-into-louvre__item:nth-child(12) {
    margin-top: 0.75rem;
}

.delve-into-louvre__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.delve-into-louvre__item:hover .delve-into-louvre__image {
    transform: scale(1.05);
}

.delve-into-louvre__button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.delve-into-louvre__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    background-color: #ffffff;
    color: #000000;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.delve-into-louvre__button:hover {
    background-color: #f5f5f5;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .parallax-section {
        height: 300px;
    }

    .delve-into-louvre {
        padding: 2rem 0;
    }

    .delve-into-louvre__container {
        padding: 0 1rem;
    }

    .delve-into-louvre__title {
        font-size: 32px;
        margin-bottom: 2rem;
    }

    .delve-into-louvre__grid-wrapper {
        max-height: 800px;
        margin-bottom: 2rem;
    }

    .delve-into-louvre__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .delve-into-louvre__item:nth-child(n+3) {
        display: none;
    }

    .delve-into-louvre__fade {
        height: 150px;
    }

    .delve-into-louvre__button-wrapper {
        margin-top: 1.5rem;
    }

    .delve-into-louvre__button {
        font-size: 14px;
        padding: 0.875rem 2rem;
    }
}

.stay-in-touch {
    width: 100%;
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.stay-in-touch__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.stay-in-touch__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stay-in-touch__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

.stay-in-touch__container {
    position: relative;
    z-index: 3;
    max-width: 1850px;
    margin: 0 auto;
    padding: 3rem 2rem;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.stay-in-touch__content {
    max-width: 500px;
}

.stay-in-touch__title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 0.75rem 0;
    font-family: 'Montserrat', sans-serif;
}

.stay-in-touch__subtitle {
    font-size: 11px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.stay-in-touch__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background-color: #ffffff;
    color: #000000;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.stay-in-touch__button:hover {
    background-color: #f5f5f5;
}

.stay-in-touch__button-icon {
    width: 1em;
    height: 1em;
    fill: currentColor;
    flex-shrink: 0;
}

.stay-in-touch__button-label {
    line-height: 1;
}

/* Visit Info Section */
.visit-info {
    width: 100%;
    background-color: #f5f5f5;
    padding: 4rem 0;
}

.visit-info__container {
    max-width: 1850px;
    margin: 0 auto;
    display: flex;
    gap: 0;
}

.visit-info__image-wrapper {
    width: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.visit-info__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 600px;
}

.visit-info__content {
    width: 50%;
    background-color: #ffffff;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visit-info__title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.visit-info__status {
    background-color: #f5f5f5;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
}

.visit-info__hours {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visit-info__hours-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.visit-info__hours-time {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
}

.visit-info__hours-days {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    font-family: 'Montserrat', sans-serif;
}

.visit-info__details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.visit-info__detail {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

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

    .visit-info__image-wrapper {
        width: 100%;
    }

    .visit-info__image {
        min-height: 400px;
    }

    .visit-info__content {
        width: 100%;
        padding: 2.5rem 2rem;
    }
}

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

    .visit-info__content {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .visit-info__title {
        font-size: 24px;
    }

    .visit-info__image {
        min-height: 300px;
    }
}

/* Visit Tickets Section */
.visit-tickets {
    width: 100%;
    background-color: #ffffff;
    padding: 4rem 0;
}

.visit-tickets__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.visit-tickets__header {
    margin-bottom: 1rem;
}

.visit-tickets__header-left {
    flex: 1;
}

.visit-tickets__title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.visit-tickets__description {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.visit-tickets__note-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.visit-tickets__note {
    font-size: 12px;
    font-weight: 400;
    color: #666666;
    line-height: 1.5;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    max-width: 400px;
    text-align: right;
}

.visit-tickets__warning {
    background-color: #fff9e6;
    border-left: 4px solid #ffa500;
    padding: 1.5rem 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.visit-tickets__warning-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    color: #ffa500;
}

.visit-tickets__warning-content {
    flex: 1;
}

.visit-tickets__warning-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 0.75rem 0;
    font-family: 'Montserrat', sans-serif;
}

.visit-tickets__warning-text {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.visit-tickets__rates {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visit-tickets__rate-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.visit-tickets__rate-label {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    flex: 1;
    padding-right: 2rem;
}

.visit-tickets__rate-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    flex-shrink: 0;
}

.visit-tickets__rate-price {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}

.visit-tickets__rate-price--free {
    color: #008573;
}

.visit-tickets__rate-link {
    font-size: 14px;
    font-weight: 400;
    color: #008573;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    text-align: right;
}

.visit-tickets__rate-link:hover {
    text-decoration: underline;
}

.visit-tickets__accordions {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2rem;
}

.visit-tickets__accordion {
    border-bottom: 1px solid #e0e0e0;
}

.visit-tickets__accordion:first-child {
    border-top: 1px solid #e0e0e0;
}

.visit-tickets__accordion-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}

.visit-tickets__accordion-title {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    flex: 1;
    padding-right: 1rem;
}

.visit-tickets__accordion-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #000000;
    transition: transform 0.3s ease;
}

.visit-tickets__accordion-button[aria-expanded="true"] .visit-tickets__accordion-icon {
    transform: rotate(180deg);
}

.visit-tickets__accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.visit-tickets__accordion-button[aria-expanded="true"] + .visit-tickets__accordion-content {
    max-height: 1000px;
    padding-bottom: 1.5rem;
}

.visit-tickets__accordion-text {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.visit-tickets__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visit-tickets__info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.visit-tickets__info-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    color: #008573;
}

.visit-tickets__info-content {
    flex: 1;
}

.visit-tickets__info-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 0.75rem 0;
    font-family: 'Montserrat', sans-serif;
}

.visit-tickets__info-text {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin: 0 0 0.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.visit-tickets__info-link {
    font-size: 14px;
    font-weight: 400;
    color: #008573;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.visit-tickets__info-link:hover {
    text-decoration: underline;
}

.visit-tickets__download {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.visit-tickets__download-image-wrapper {
    width: 200px;
    height: 150px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
}

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

.visit-tickets__download-content {
    flex: 1;
}

.visit-tickets__download-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 0.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.visit-tickets__download-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    margin: 0 0 1.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.visit-tickets__download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.visit-tickets__download-button:hover {
    background-color: #333333;
}

.visit-tickets__download-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.visit-tickets__download-text {
    line-height: 1;
}

.visit-tickets__download-size {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
    margin-left: 0.5rem;
}

@media (max-width: 1024px) {
    .visit-tickets__note-wrapper {
        justify-content: flex-start;
    }

    .visit-tickets__note {
        text-align: left;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .visit-tickets {
        padding: 2rem 0;
    }

    .visit-tickets__container {
        padding: 0 1.5rem;
        gap: 2rem;
    }

    .visit-tickets__title {
        font-size: 32px;
    }

    .visit-tickets__warning {
        padding: 1.25rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }

    .visit-tickets__warning-icon {
        width: 40px;
        height: 40px;
    }

    .visit-tickets__rate-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .visit-tickets__rate-label {
        padding-right: 0;
    }

    .visit-tickets__rate-right {
        align-items: flex-start;
        width: 100%;
    }

    .visit-tickets__info-item {
        flex-direction: column;
        gap: 1rem;
    }

    .visit-tickets__info-icon {
        width: 40px;
        height: 40px;
    }

    .visit-tickets__download {
        flex-direction: column;
        align-items: flex-start;
    }

    .visit-tickets__download-image-wrapper {
        width: 100%;
        height: 200px;
    }
}

/* FAQ Hero Section */
.faq-hero {
    width: 100%;
    position: relative;
    aspect-ratio: 1920 / 600;
    overflow: hidden;
}

.faq-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.faq-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.faq-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 2;
}

.faq-hero__container {
    position: relative;
    z-index: 3;
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
}

.faq-hero__content {
    max-width: 600px;
}

.faq-hero__title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 0.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.faq-hero__subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* FAQ Content Section */
.faq-content {
    width: 100%;
    background-color: #ffffff;
    padding: 4rem 0;
}

.faq-content__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.faq-content__sidebar {
    width: 280px;
    flex-shrink: 0;
}

.faq-content__sidebar-label {
    font-size: 14px;
    font-weight: 600;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.faq-content__nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-content__nav-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    background: none;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.2s ease;
}

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

.faq-content__nav-item--active {
    background-color: #f5f5f5;
    border-left: 3px solid #008573;
    padding-left: 1rem;
}

.faq-content__nav-text {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
}

.faq-content__nav-item--active .faq-content__nav-text {
    font-weight: 600;
}

.faq-content__nav-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #000000;
}

.faq-content__main {
    flex: 1;
    min-width: 0;
}

.faq-content__category-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 2rem 0;
    font-family: 'Montserrat', sans-serif;
}

.faq-content__questions {
    display: flex;
    flex-direction: column;
}

.faq-content__question {
    border-top: 1px solid #e0e0e0;
}

.faq-content__question:last-child {
    border-bottom: 1px solid #e0e0e0;
}

.faq-content__question-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}

.faq-content__question-text {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    flex: 1;
    padding-right: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.faq-content__question-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #000000;
    transition: transform 0.3s ease;
}

.faq-content__question-button[aria-expanded="true"] .faq-content__question-icon {
    transform: rotate(180deg);
}

.faq-content__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.faq-content__question-button[aria-expanded="true"] + .faq-content__answer {
    max-height: 1000px;
    padding: 0 0 1.5rem 0;
}

.faq-content__answer-text {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.faq-content__answer-text p {
    margin: 0 0 1em 0;
}

.faq-content__answer-text p:last-child {
    margin-bottom: 0;
}

.faq-content__answer-text p strong {
    font-weight: 600;
    color: #333333;
}

.faq-content__answer-text ul {
    margin: 1em 0;
    padding-left: 1.5em;
    list-style-type: disc;
}

.faq-content__answer-text li {
    margin: 0.5em 0;
}

@media (max-width: 1024px) {
    .faq-content__container {
        flex-direction: column;
        gap: 2rem;
    }

    .faq-content__sidebar {
        width: 100%;
    }

    .faq-content__nav {
        flex-direction: row;
        overflow-x: auto;
        gap: 0;
    }

    .faq-content__nav-item {
        flex-shrink: 0;
        padding: 1rem 1.5rem;
        border-bottom: none;
        border-right: 1px solid #e0e0e0;
        white-space: nowrap;
    }

    .faq-content__nav-item--active {
        border-left: none;
        border-bottom: 3px solid #008573;
        padding-left: 1.5rem;
    }
}

@media (max-width: 768px) {
    .faq-hero {
        aspect-ratio: 16 / 9;
    }

    .faq-hero__container {
        padding: 0 1rem;
        padding-bottom: 2rem;
    }

    .faq-hero__title {
        font-size: 32px;
    }

    .faq-hero__subtitle {
        font-size: 16px;
    }

    .faq-content {
        padding: 2rem 0;
    }

    .faq-content__container {
        padding: 0 1.5rem;
        gap: 2rem;
    }

    .faq-content__category-title {
        font-size: 24px;
    }

    .faq-content__question-text,
    .faq-content__answer-text {
        font-size: 14px;
    }

    .faq-content__question-button {
        padding: 1rem 0;
    }
}

/* Credits Hero Section */
.credits-hero {
    width: 100%;
    position: relative;
    aspect-ratio: 1920 / 600;
    overflow: hidden;
}

.credits-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.credits-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.credits-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 2;
}

.credits-hero__container {
    position: relative;
    z-index: 3;
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
}

.credits-hero__content {
    max-width: 600px;
}

.credits-hero__title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* Credits Content Section */
.credits-content {
    width: 100%;
    background-color: #ffffff;
    padding: 4rem 0;
}

.credits-content__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.credits-content__section {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.credits-content__section:last-child {
    border-bottom: none;
}

.credits-content__section-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 40%;
    flex-shrink: 0;
}

.credits-content__section-content {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credits-content__section-text {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 1024px) {
    .credits-content__section {
        flex-direction: column;
        gap: 1rem;
    }

    .credits-content__section-title {
        width: 100%;
    }

    .credits-content__section-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .credits-hero {
        aspect-ratio: 16 / 9;
    }

    .credits-hero__container {
        padding: 0 1rem;
        padding-bottom: 2rem;
    }

    .credits-hero__title {
        font-size: 32px;
    }

    .credits-content {
        padding: 2rem 0;
    }

    .credits-content__container {
        padding: 0 1.5rem;
        gap: 2rem;
    }

    .credits-content__section-title {
        font-size: 18px;
    }

    .credits-content__section-text {
        font-size: 14px;
    }
}

/* Cookies Hero Section */
.cookies-hero {
    width: 100%;
    position: relative;
    aspect-ratio: 1920 / 600;
    overflow: hidden;
}

.cookies-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cookies-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cookies-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 2;
}

.cookies-hero__container {
    position: relative;
    z-index: 3;
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
}

.cookies-hero__content {
    max-width: 600px;
}

.cookies-hero__title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* Cookies Content Section */
.cookies-content {
    width: 100%;
    background-color: #ffffff;
    padding: 4rem 0;
}

.cookies-content__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.cookies-content__section {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.cookies-content__section:last-child {
    border-bottom: none;
}

.cookies-content__section-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 40%;
    flex-shrink: 0;
}

.cookies-content__section-content {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookies-content__subsection-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 1.5rem 0 0.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.cookies-content__subsection-title:first-child {
    margin-top: 0;
}

.cookies-content__subsubsection-title {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin: 1.5rem 0 0.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.cookies-content__section-text {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

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

.cookies-content__list-item {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
    padding-left: 1.5rem;
    position: relative;
}

.cookies-content__list-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: 700;
}

.cookies-content__cookie-item {
    background-color: #f5f5f5;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    border-left: 3px solid #008573;
}

.cookies-content__cookie-name {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 0.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.cookies-content__cookie-detail {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 1.5;
    margin: 0.25rem 0;
    font-family: 'Montserrat', sans-serif;
}

.cookies-content__link {
    color: #008573;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.cookies-content__link:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .cookies-content__section {
        flex-direction: column;
        gap: 1rem;
    }

    .cookies-content__section-title {
        width: 100%;
    }

    .cookies-content__section-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .cookies-hero {
        aspect-ratio: 16 / 9;
    }

    .cookies-hero__container {
        padding: 0 1rem;
        padding-bottom: 2rem;
    }

    .cookies-hero__title {
        font-size: 32px;
    }

    .cookies-content {
        padding: 2rem 0;
    }

    .cookies-content__container {
        padding: 0 1.5rem;
        gap: 2rem;
    }

    .cookies-content__section-title {
        font-size: 18px;
    }

    .cookies-content__subsection-title {
        font-size: 16px;
    }

    .cookies-content__subsubsection-title {
        font-size: 15px;
    }

    .cookies-content__section-text,
    .cookies-content__list-item {
        font-size: 14px;
    }

    .cookies-content__cookie-item {
        padding: 0.75rem 1rem;
    }

    .cookies-content__cookie-name {
        font-size: 14px;
    }

    .cookies-content__cookie-detail {
        font-size: 12px;
    }
}

/* Privacy Hero Section */
.privacy-hero {
    width: 100%;
    position: relative;
    aspect-ratio: 1920 / 600;
    overflow: hidden;
}

.privacy-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.privacy-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.privacy-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 2;
}

.privacy-hero__container {
    position: relative;
    z-index: 3;
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
}

.privacy-hero__content {
    max-width: 600px;
}

.privacy-hero__title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* Privacy Content Section */
.privacy-content {
    width: 100%;
    background-color: #ffffff;
    padding: 4rem 0;
}

.privacy-content__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.privacy-content__intro {
    margin-bottom: 1rem;
}

.privacy-content__intro-text {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    font-family: 'Montserrat', sans-serif;
}

.privacy-content__section {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.privacy-content__section:last-child {
    border-bottom: none;
}

.privacy-content__section-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 40%;
    flex-shrink: 0;
}

.privacy-content__section-content {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.privacy-content__subsection-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 1.5rem 0 0.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.privacy-content__subsection-title:first-child {
    margin-top: 0;
}

.privacy-content__section-text {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

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

.privacy-content__list-item {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
    padding-left: 1.5rem;
    position: relative;
}

.privacy-content__list-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .privacy-content__section {
        flex-direction: column;
        gap: 1rem;
    }

    .privacy-content__section-title {
        width: 100%;
    }

    .privacy-content__section-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .privacy-hero {
        aspect-ratio: 16 / 9;
    }

    .privacy-hero__container {
        padding: 0 1rem;
        padding-bottom: 2rem;
    }

    .privacy-hero__title {
        font-size: 32px;
    }

    .privacy-content {
        padding: 2rem 0;
    }

    .privacy-content__container {
        padding: 0 1.5rem;
        gap: 2rem;
    }

    .privacy-content__section-title {
        font-size: 18px;
    }

    .privacy-content__subsection-title {
        font-size: 16px;
    }

    .privacy-content__section-text,
    .privacy-content__list-item {
        font-size: 14px;
    }
}

/* Legal Hero Section */
.legal-hero {
    width: 100%;
    position: relative;
    aspect-ratio: 1920 / 600;
    overflow: hidden;
}

.legal-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.legal-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.legal-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 2;
}

.legal-hero__container {
    position: relative;
    z-index: 3;
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
}

.legal-hero__content {
    max-width: 600px;
}

.legal-hero__title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* Legal Content Section */
.legal-content {
    width: 100%;
    background-color: #ffffff;
    padding: 4rem 0;
}

.legal-content__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.legal-content__section {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.legal-content__section:last-child {
    border-bottom: none;
}

.legal-content__section-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 40%;
    flex-shrink: 0;
}

.legal-content__section-content {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legal-content__subsection-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 0.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.legal-content__section-text {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

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

.legal-content__list-item {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
    padding-left: 1.5rem;
    position: relative;
}

.legal-content__list-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .legal-content__section {
        flex-direction: column;
        gap: 1rem;
    }

    .legal-content__section-title {
        width: 100%;
    }

    .legal-content__section-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .legal-hero {
        aspect-ratio: 16 / 9;
    }

    .legal-hero__container {
        padding: 0 1rem;
        padding-bottom: 2rem;
    }

    .legal-hero__title {
        font-size: 32px;
    }

    .legal-content {
        padding: 2rem 0;
    }

    .legal-content__container {
        padding: 0 1.5rem;
        gap: 2rem;
    }

    .legal-content__section-title {
        font-size: 18px;
    }

    .legal-content__subsection-title {
        font-size: 16px;
    }

    .legal-content__section-text,
    .legal-content__list-item {
        font-size: 14px;
    }
}

/* Contact Hero Section */
.contact-hero {
    width: 100%;
    position: relative;
    aspect-ratio: 1920 / 600;
    overflow: hidden;
}

.contact-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 2;
}

.contact-hero__container {
    position: relative;
    z-index: 3;
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
}

.contact-hero__content {
    max-width: 600px;
}

.contact-hero__title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 0.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.contact-hero__subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* Visitor Trails Hero Section */
.visitor-trails-hero {
    width: 100%;
    position: relative;
    aspect-ratio: 1920 / 600;
    overflow: hidden;
}

.visitor-trails-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.visitor-trails-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.visitor-trails-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 2;
}

.visitor-trails-hero__container {
    position: relative;
    z-index: 3;
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
}

.visitor-trails-hero__content {
    max-width: 600px;
}

.visitor-trails-hero__title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 0.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.visitor-trails-hero__subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* Gardens Hero Section */
.gardens-hero {
    width: 100%;
    position: relative;
    aspect-ratio: 1920 / 600;
    overflow: hidden;
}

.gardens-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gardens-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gardens-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 2;
}

.gardens-hero__container {
    position: relative;
    z-index: 3;
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
}

.gardens-hero__content {
    max-width: 600px;
}

.gardens-hero__title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 0.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.gardens-hero__subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* Museum Life Hero Section */
.museum-life-hero {
    width: 100%;
    position: relative;
    aspect-ratio: 1920 / 600;
    overflow: hidden;
}

.museum-life-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.museum-life-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.museum-life-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 2;
}

.museum-life-hero__container {
    position: relative;
    z-index: 3;
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
}

.museum-life-hero__content {
    max-width: 600px;
}

.museum-life-hero__title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 1rem 0;
    font-family: 'Montserrat', sans-serif;
}

.museum-life-hero__subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* Collections Hero Section */
.collections-hero {
    width: 100%;
    position: relative;
    aspect-ratio: 1920 / 600;
    overflow: hidden;
}

.collections-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.collections-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.collections-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 2;
}

.collections-hero__container {
    position: relative;
    z-index: 3;
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
}

.collections-hero__content {
    max-width: 600px;
}

.collections-hero__title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.collections-hero__subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    margin: 1rem 0 0 0;
    font-family: 'Montserrat', sans-serif;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .collections-hero {
        aspect-ratio: 16 / 9;
    }

    .collections-hero__container {
        padding: 0 1.5rem;
        padding-bottom: 2rem;
    }

    .collections-hero__title {
        font-size: 36px;
    }

    .collections-hero__subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .collections-hero {
        aspect-ratio: 16 / 9;
    }

    .collections-hero__container {
        padding: 0 1rem;
        padding-bottom: 2rem;
    }

    .collections-hero__title {
        font-size: 24px;
    }

    .collections-hero__subtitle {
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    .collections-hero__title {
        font-size: 24px;
    }

    .collections-hero__subtitle {
        font-size: 12px;
    }
}

@media (max-width: 500px) {
    .collections-hero__title {
        font-size: 20px;
    }

    .collections-hero__subtitle {
        font-size: 11px;
    }
}

@media (max-width: 400px) {
    .collections-hero__title {
        font-size: 18px;
    }

    .collections-hero__subtitle {
        font-size: 10px;
    }
}

@media (max-width: 350px) {
    .collections-hero__title {
        font-size: 16px;
    }

    .collections-hero__subtitle {
        font-size: 10px;
    }
}

/* Collections Content Section */
.collections-content {
    width: 100%;
    background-color: #ffffff;
    padding: 4rem 0;
}

.collections-content__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.collections-database-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 auto 3rem auto;
    max-width: 800px;
}

.collections-database-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #000000;
}

.collections-database-card__image-wrapper {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
}

.collections-database-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.collections-database-card__content {
    flex: 1;
}

.collections-database-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.collections-database-card__arrow {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid #000000;
    border-radius: 50%;
    color: #000000;
    transition: transform 0.3s ease;
}

.collections-database-card:hover .collections-database-card__arrow {
    transform: translateX(4px);
}

.collections-database-card__arrow svg {
    width: 16px;
    height: 16px;
    fill: #000000;
}

.collections-database-card__arrow svg path {
    fill: #000000;
}

.collections-content__text {
    max-width: 800px;
    margin: 0 auto;
}

.collections-content__paragraph {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.collections-content__paragraph:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .collections-content {
        padding: 3rem 0;
    }

    .collections-content__container {
        padding: 0 1.5rem;
    }

    .collections-database-card {
        padding: 1.25rem;
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .collections-database-card__image-wrapper {
        width: 70px;
        height: 70px;
    }

    .collections-database-card__title {
        font-size: 18px;
    }

    .collections-content__paragraph {
        font-size: 15px;
    }
}

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

    .collections-content__container {
        padding: 0 1rem;
    }

    .collections-database-card {
        padding: 1rem;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .collections-database-card__image-wrapper {
        width: 60px;
        height: 60px;
    }

    .collections-database-card__title {
        font-size: 16px;
    }

    .collections-database-card__arrow {
        width: 36px;
        height: 36px;
    }

    .collections-database-card__arrow svg {
        width: 14px;
        height: 14px;
    }

    .collections-content__paragraph {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }
}

/* Exhibitions List Section */
.exhibitions-list {
    width: 100%;
    background-color: #ffffff;
    padding: 4rem 0;
}

.exhibitions-list__container {
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 2rem;
}

.exhibitions-list__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.exhibitions-list__nav {
    display: flex;
    gap: 2rem;
}

.exhibitions-list__nav-link {
    font-size: 14px;
    font-weight: 600;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.2s ease;
    position: relative;
    padding-bottom: 0.5rem;
}

.exhibitions-list__nav-link:hover {
    color: #000000;
}

.exhibitions-list__nav-link--active {
    color: #000000;
}

.exhibitions-list__nav-link--active::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #000000;
}

.exhibitions-list__past-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.2s ease;
}

.exhibitions-list__past-link:hover {
    color: #008573;
}

.exhibitions-list__past-link svg {
    width: 1em;
    height: 1em;
}

.exhibitions-list__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.exhibitions-list__item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.exhibitions-list__image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.exhibitions-list__item--large .exhibitions-list__image-wrapper {
    aspect-ratio: 16 / 9;
    margin-bottom: 0;
    position: relative;
}

.exhibitions-list__item--large .exhibitions-list__image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.exhibitions-list__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.exhibitions-list__item:hover .exhibitions-list__image {
    transform: scale(1.05);
}

.exhibitions-list__tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background-color: #333333;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
    font-family: 'Montserrat', sans-serif;
}

.exhibitions-list__content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.exhibitions-list__title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.exhibitions-list__item--large .exhibitions-list__content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 5;
}

.exhibitions-list__item--large .exhibitions-list__title {
    font-size: 32px;
    color: #ffffff;
}

.exhibitions-list__subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    margin: 0;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}

.exhibitions-list__dates {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    margin: 0;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}

.exhibitions-list__item--large .exhibitions-list__dates {
    color: #ffffff;
}

@media (max-width: 1024px) {
    .exhibitions-list {
        padding: 3rem 0;
    }

    .exhibitions-list__container {
        padding: 0 1.5rem;
    }

    .exhibitions-list__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .exhibitions-list__grid {
        grid-template-columns: 1fr;
    }

    .exhibitions-list__item--large .exhibitions-list__content {
        bottom: 1.5rem;
        left: 1.5rem;
    }

    .exhibitions-list__item--large .exhibitions-list__title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .exhibitions-list {
        padding: 2rem 0;
    }

    .exhibitions-list__container {
        padding: 0 1rem;
    }

    .exhibitions-list__header {
        margin-bottom: 2rem;
    }

    .exhibitions-list__nav {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .exhibitions-list__nav-link--active::after {
        display: none;
    }

    .exhibitions-list__title {
        font-size: 20px;
    }

    .exhibitions-list__item--large .exhibitions-list__content {
        bottom: 1rem;
        left: 1rem;
    }

    .exhibitions-list__item--large .exhibitions-list__title {
        font-size: 24px;
    }

    .exhibitions-list__item--large .exhibitions-list__dates {
        font-size: 12px;
    }

    .exhibitions-list__subtitle {
        font-size: 14px;
    }

    .exhibitions-list__dates {
        font-size: 12px;
    }
}

/* Guided Tours Section & Events Section */
.guided-tours-section,
.events-section {
    width: 100%;
}

.guided-tours-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.guided-tours-filters__item {
    flex: 0 0 auto;
}

.guided-tours-filter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.guided-tours-filter:hover {
    border-color: #000000;
    background-color: #f5f5f5;
}

.guided-tours-filter svg {
    width: 1em;
    height: 1em;
    flex-shrink: 0;
}

.guided-tours-filter--button {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

.guided-tours-filter--button:hover {
    background-color: #333333;
    border-color: #333333;
}

.guided-tours-filter--active {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
}

.guided-tours-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.guided-tours-month {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.guided-tours-month__title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.guided-tours-month__subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.guided-tours-month__empty {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
}

.guided-tours-card {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: box-shadow 0.2s ease;
}

.guided-tours-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.guided-tours-card__image {
    flex: 0 0 300px;
    width: 300px;
    height: 200px;
    overflow: hidden;
    border-radius: 4px;
}

.guided-tours-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.guided-tours-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.guided-tours-card__meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.guided-tours-card__tag {
    padding: 0.25rem 0.75rem;
    background-color: #333333;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
    border-radius: 2px;
}

.guided-tours-card__public {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
}

.guided-tours-card__public svg {
    width: 1em;
    height: 1em;
}

.guided-tours-card__title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.guided-tours-card__description {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.guided-tours-card__dates {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 1.4;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.guided-tours-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.2s ease;
    margin-top: 0.5rem;
}

.guided-tours-card__link:hover {
    color: #008573;
}

.guided-tours-card__link svg {
    width: 1em;
    height: 1em;
}

.guided-tours-more {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.guided-tours-more__button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.guided-tours-more__button:hover {
    background-color: #333333;
}

.guided-tours-more__button svg {
    width: 1em;
    height: 1em;
}

@media (max-width: 1024px) {
    .guided-tours-filters {
        gap: 0.75rem;
    }

    .guided-tours-filter {
        padding: 0.625rem 0.875rem;
        font-size: 13px;
    }

    .guided-tours-card {
        flex-direction: column;
        gap: 1.5rem;
    }

    .guided-tours-card__image {
        flex: 0 0 auto;
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .guided-tours-filters {
        flex-direction: column;
        gap: 0.75rem;
    }

    .guided-tours-filters__item {
        width: 100%;
    }

    .guided-tours-filter {
        width: 100%;
        justify-content: space-between;
    }

    .guided-tours-month__title {
        font-size: 20px;
    }

    .guided-tours-month__subtitle {
        font-size: 14px;
    }

    .guided-tours-card {
        padding: 1.5rem;
    }

    .guided-tours-card__image {
        height: 200px;
    }

    .guided-tours-card__title {
        font-size: 20px;
    }

    .guided-tours-card__description {
        font-size: 14px;
    }

    .guided-tours-more__button {
        width: 100%;
        justify-content: center;
    }
}

/* Museum Life News Section */
.museum-life-news {
    width: 100%;
    background-color: #ffffff;
    padding: 4rem 0;
}

.museum-life-news__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.museum-life-news__card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.museum-life-news__card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.museum-life-news__image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
}

.museum-life-news__image-wrapper--logo {
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.museum-life-news__logo-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.museum-life-news__logo {
    width: 200px;
    height: auto;
}

.museum-life-news__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.museum-life-news__tags {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    z-index: 2;
}

.museum-life-news__tag {
    display: inline-block;
    padding: 0.2rem 0.4rem;
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
    border: none;
}

.museum-life-news__tag--black {
    background-color: #000000;
    color: #ffffff;
    border-radius: 0;
    border: none;
}

.museum-life-news__tag--gold {
    background-color: #8B6914;
    color: #ffffff;
    border-radius: 4px;
    border: none;
}

.museum-life-news__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.museum-life-news__card-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.museum-life-news__card-description {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.museum-life-news__card-date {
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    margin-top: auto;
    font-family: 'Montserrat', sans-serif;
}

.museum-life-news__card--hidden {
    display: none;
}

.museum-life-news__button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.museum-life-news__button {
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #000000;
    padding: 1rem 2.5rem;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.museum-life-news__button:hover {
    background-color: #ffffff;
    color: #000000;
}

.museum-life-news__button:active {
    transform: scale(0.98);
}

@media (max-width: 1024px) {
    .museum-life-hero {
        aspect-ratio: 16 / 9;
    }

    .museum-life-hero__container {
        padding: 0 1.5rem;
        padding-bottom: 2rem;
    }

    .museum-life-hero__title {
        font-size: 36px;
    }

    .museum-life-hero__subtitle {
        font-size: 20px;
    }

    .museum-life-news {
        padding: 3rem 0;
    }

    .museum-life-news__container {
        padding: 0 1.5rem;
    }

    .museum-life-news__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .museum-life-hero {
        aspect-ratio: 16 / 9;
    }

    .museum-life-hero__container {
        padding: 0 1rem;
        padding-bottom: 2rem;
    }

    .museum-life-hero__title {
        font-size: 32px;
    }

    .museum-life-hero__subtitle {
        font-size: 18px;
    }

    .museum-life-news {
        padding: 2rem 0;
    }

    .museum-life-news__container {
        padding: 0 1rem;
    }

    .museum-life-news__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .museum-life-news__content {
        padding: 1.25rem;
    }

    .museum-life-news__card-title {
        font-size: 18px;
    }

    .museum-life-news__card-description {
        font-size: 13px;
    }
}

/* Gardens Opening Hours Section */
.gardens-opening-hours {
    width: 100%;
    background-color: #f5f5f5;
}

.gardens-opening-hours__intro {
    width: 100%;
    background-color: #f5f5f5;
    padding: 4rem 0 2rem 0;
}

.gardens-opening-hours__intro-container {
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gardens-opening-hours__intro-title {
    font-size: 32px;
    font-weight: 700;
    color: #008573;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 1.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.gardens-opening-hours__intro-text {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    max-width: 800px;
}

.gardens-opening-hours__container {
    max-width: 1850px;
    margin: 0 auto;
    display: flex;
    gap: 0;
}

.gardens-opening-hours__image-wrapper {
    width: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.gardens-opening-hours__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 600px;
}

.gardens-opening-hours__content {
    width: 50%;
    background-color: #ffffff;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.gardens-opening-hours__title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gardens-opening-hours__hours {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gardens-opening-hours__hours-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gardens-opening-hours__hours-time {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
}

.gardens-opening-hours__hours-days {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    font-family: 'Montserrat', sans-serif;
}

.gardens-opening-hours__entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.gardens-opening-hours__entry-label {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
}

.gardens-opening-hours__entry-price {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.gardens-opening-hours__note {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 1024px) {
    .gardens-opening-hours__container {
        flex-direction: column;
    }

    .gardens-opening-hours__image-wrapper {
        width: 100%;
    }

    .gardens-opening-hours__image {
        min-height: 400px;
    }

    .gardens-opening-hours__content {
        width: 100%;
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .gardens-opening-hours__intro {
        padding: 2rem 0 1.5rem 0;
    }

    .gardens-opening-hours__intro-container {
        padding: 0 1.5rem;
    }

    .gardens-opening-hours__intro-title {
        font-size: 24px;
    }

    .gardens-opening-hours__intro-text {
        font-size: 14px;
    }

    .gardens-opening-hours {
        padding: 0;
    }

    .gardens-opening-hours__content {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .gardens-opening-hours__title {
        font-size: 24px;
    }

    .gardens-opening-hours__image {
        min-height: 300px;
    }
}

/* Gardens Activities Section */
.gardens-activities {
    width: 100%;
    background-color: #ffffff;
    padding: 4rem 0;
}

.gardens-activities__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gardens-activities__title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 3rem 0;
    font-family: 'Montserrat', sans-serif;
}

.gardens-activities__wrapper {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.gardens-activities__text {
    width: 40%;
    flex-shrink: 0;
}

.gardens-activities__subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 1.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.gardens-activities__intro {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.gardens-activities__cards {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.gardens-activities__card {
    display: flex;
    gap: 1.5rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.gardens-activities__card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gardens-activities__image-wrapper {
    width: 200px;
    flex-shrink: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.gardens-activities__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gardens-activities__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.gardens-activities__card-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.gardens-activities__card-description {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.gardens-activities__card-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.gardens-activities__card-location {
    font-size: 13px;
    font-weight: 400;
    color: #666666;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.gardens-activities__card-price {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.gardens-activities__card-price--free {
    color: #008573;
}

.gardens-activities__card-note {
    font-size: 12px;
    font-weight: 400;
    color: #999999;
    font-style: italic;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 1024px) {
    .gardens-activities {
        padding: 3rem 0;
    }

    .gardens-activities__container {
        padding: 0 1.5rem;
    }

    .gardens-activities__wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .gardens-activities__text {
        width: 100%;
    }

    .gardens-activities__cards {
        width: 100%;
    }

    .gardens-activities__title {
        font-size: 28px;
        margin-bottom: 2rem;
    }

    .gardens-activities__subtitle {
        font-size: 18px;
    }

    .gardens-activities__card {
        flex-direction: column;
    }

    .gardens-activities__image-wrapper {
        width: 100%;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    .gardens-activities {
        padding: 2rem 0;
    }

    .gardens-activities__container {
        padding: 0 1rem;
    }

    .gardens-activities__title {
        font-size: 24px;
        margin-bottom: 1.5rem;
    }

    .gardens-activities__subtitle {
        font-size: 16px;
    }

    .gardens-activities__intro {
        font-size: 14px;
    }

    .gardens-activities__cards {
        gap: 1.5rem;
    }

    .gardens-activities__content {
        padding: 1.25rem;
    }

    .gardens-activities__card-title {
        font-size: 18px;
    }

    .gardens-activities__card-description {
        font-size: 13px;
    }
}

/* Gardens Gallery Section */
.gardens-gallery {
    width: 100%;
    background-color: #ffffff;
    padding: 4rem 0;
}

.gardens-gallery__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gardens-gallery__image {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.gardens-gallery__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .gardens-gallery {
        padding: 2rem 0;
    }

    .gardens-gallery__container {
        padding: 0 1rem;
    }
}

/* Visitor Trails Content Section */
.visitor-trails-content {
    width: 100%;
    background-color: #1A1A1A;
    padding: 4rem 0;
}

.visitor-trails-content__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.visitor-trails-content__intro {
    margin-bottom: 3rem;
    max-width: 800px;
}

.visitor-trails-content__intro-text {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.visitor-trails-content__map-link {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    transition: opacity 0.3s ease;
}

.visitor-trails-content__map-link:hover {
    opacity: 0.7;
}

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

.visitor-trails-content__card {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.visitor-trails-content__card:hover {
    transform: translateY(-4px);
}

.visitor-trails-content__card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.visitor-trails-content__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.visitor-trails-content__card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.visitor-trails-content__card-badge--secondary {
    top: 4rem;
}

.visitor-trails-content__card-badge-text {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.visitor-trails-content__card-badge-icon {
    width: 1em;
    height: 1em;
    color: #ffffff;
}

.visitor-trails-content__card-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
}

.visitor-trails-content__card-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.visitor-trails-content__card-title--special {
    font-size: 24px;
    font-weight: 400;
    font-style: italic;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0.25rem;
}

.visitor-trails-content__card-text {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.visitor-trails-content__card-link {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.visitor-trails-content__card-link:hover {
    transform: translateX(4px);
}

.visitor-trails-content__card-link-icon {
    width: 1.5em;
    height: 1.5em;
    color: #ffffff;
}

/* Contact Content Section */
.contact-content {
    width: 100%;
    background-color: #ffffff;
    padding: 4rem 0;
}

.contact-content__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-content__intro {
    margin-bottom: 1rem;
}

.contact-content__intro-text {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.contact-content__section {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.contact-content__section:last-child {
    border-bottom: none;
}

.contact-content__section-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 40%;
    flex-shrink: 0;
}

.contact-content__section-content {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-content__section-text {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.contact-content__section-note {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
}

.contact-content__section-item {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-content__section-item strong {
    font-weight: 600;
}

.contact-content__section-link {
    color: #008573;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.contact-content__section-link:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .contact-content__section {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-content__section-title {
        width: 100%;
    }

    .contact-content__section-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        aspect-ratio: 16 / 9;
    }

    .contact-hero__container {
        padding: 0 1rem;
        padding-bottom: 2rem;
    }

    .contact-hero__title {
        font-size: 32px;
    }

    .contact-hero__subtitle {
        font-size: 16px;
    }

    .contact-content {
        padding: 2rem 0;
    }

    .contact-content__container {
        padding: 0 1.5rem;
        gap: 2rem;
    }

    .contact-content__section-title {
        font-size: 18px;
    }

    .contact-content__section-text,
    .contact-content__section-item {
        font-size: 14px;
    }

    .visitor-trails-hero {
        aspect-ratio: 16 / 9;
    }

    .visitor-trails-hero__container {
        padding: 0 1rem;
        padding-bottom: 2rem;
    }

    .visitor-trails-hero__title {
        font-size: 32px;
    }

    .visitor-trails-hero__subtitle {
        font-size: 16px;
    }

    .gardens-hero {
        aspect-ratio: 16 / 9;
    }

    .gardens-hero__container {
        padding: 0 1rem;
        padding-bottom: 2rem;
    }

    .gardens-hero__title {
        font-size: 32px;
    }

    .gardens-hero__subtitle {
        font-size: 16px;
    }

    .visitor-trails-content {
        padding: 3rem 0;
    }

    .visitor-trails-content__container {
        padding: 0 1.5rem;
    }

    .visitor-trails-content__intro {
        margin-bottom: 2rem;
    }

    .visitor-trails-content__intro-text {
        font-size: 14px;
    }

    .visitor-trails-content__map-link {
        font-size: 14px;
    }

    .visitor-trails-content__cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .visitor-trails-content__card-title {
        font-size: 18px;
    }

    .visitor-trails-content__card-title--special {
        font-size: 20px;
    }

    .visitor-trails-content__card-text {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .visitor-trails-content {
        padding: 2rem 0;
    }

    .visitor-trails-content__container {
        padding: 0 1rem;
    }

    .visitor-trails-content__intro {
        margin-bottom: 1.5rem;
    }

    .visitor-trails-content__cards {
        gap: 1.5rem;
    }
}

/* Visit Hero Section */
.visit-hero {
    width: 100%;
    position: relative;
    aspect-ratio: 1920 / 600;
    overflow: hidden;
}

.visit-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.visit-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.visit-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 2;
}

.visit-hero__container {
    position: relative;
    z-index: 3;
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
}

.visit-hero__content {
    max-width: 600px;
}

.visit-hero__title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 0.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.visit-hero__subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 768px) {
    .visit-hero {
        aspect-ratio: 16 / 9;
    }

    .visit-hero__container {
        padding: 0 1rem;
        padding-bottom: 2rem;
    }

    .visit-hero__title {
        font-size: 24px;
    }

    .visit-hero__subtitle {
        font-size: 14px;
    }

    .stay-in-touch {
        min-height: 250px;
    }
}

.palace-hero {
    width: 100%;
    position: relative;
    aspect-ratio: 1920 / 600;
    overflow: hidden;
}

.palace-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.palace-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.palace-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 2;
}

.palace-hero__container {
    position: relative;
    z-index: 3;
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
}

.palace-hero__content {
    max-width: 600px;
}

.palace-hero__title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 0.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.palace-hero__subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 768px) {
    .palace-hero {
        aspect-ratio: 16 / 9;
    }

    .palace-hero__container {
        padding: 0 1rem;
        padding-bottom: 2rem;
    }

    .palace-hero__title {
        font-size: 24px;
    }

    .palace-hero__subtitle {
        font-size: 14px;
    }
}

.palace-grid {
    width: 100%;
    padding: 2rem 0;
    background-color: #1A1A1A;
}

.palace-grid__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.palace-grid__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.palace-grid__item {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.palace-grid__item:hover {
    transform: scale(1.02);
}

.palace-grid__image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.palace-grid__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.palace-grid__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 2;
}

.palace-grid__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    z-index: 3;
}

.palace-grid__title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 0.3rem 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.palace-grid__subtitle {
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .palace-grid {
        padding: 3rem 0;
    }

    .palace-grid__container {
        padding: 0 1.5rem;
    }

    .palace-grid__items {
        gap: 1.5rem;
    }

    .palace-grid__title {
        font-size: 20px;
    }

    .palace-grid__subtitle {
        font-size: 14px;
    }
}

/* Palace Modal */
.palace-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;
}

.palace-modal--open {
    opacity: 1;
    visibility: visible;
}

.palace-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.palace-modal__container {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background-color: #1A1A1A;
    border-radius: 8px;
    overflow: hidden;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.palace-modal--open .palace-modal__container {
    transform: scale(1);
}

.palace-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    transition: background-color 0.2s ease;
}

.palace-modal__close:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.palace-modal__content {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 90vh;
}

.palace-modal__image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    flex-shrink: 0;
}

.palace-modal__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.palace-modal__text {
    padding: 2rem;
    flex: 1;
}

.palace-modal__title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 0.5rem 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.palace-modal__subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #d4af37;
    margin: 0 0 1.5rem 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
}

.palace-modal__description {
    font-size: 16px;
    font-weight: 400;
    color: #e0e0e0;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 768px) {
    .palace-modal__container {
        width: 95%;
        max-height: 95vh;
    }

    .palace-modal__image-wrapper {
        height: 200px;
    }

    .palace-modal__text {
        padding: 1.5rem;
    }

    .palace-modal__title {
        font-size: 20px;
    }

    .palace-modal__subtitle {
        font-size: 14px;
    }

    .palace-modal__description {
        font-size: 14px;
    }

    .palace-modal__close {
        top: 0.5rem;
        right: 0.5rem;
        width: 36px;
        height: 36px;
    }
}

/* Visitor Trails Modal */
.visitor-trails-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;
}

.visitor-trails-modal--open {
    opacity: 1;
    visibility: visible;
}

.visitor-trails-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.visitor-trails-modal__container {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background-color: #1A1A1A;
    border-radius: 8px;
    overflow: hidden;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.visitor-trails-modal--open .visitor-trails-modal__container {
    transform: scale(1);
}

.visitor-trails-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    transition: background-color 0.2s ease;
}

.visitor-trails-modal__close:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.visitor-trails-modal__content {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 90vh;
}

.visitor-trails-modal__image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    flex-shrink: 0;
}

.visitor-trails-modal__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.visitor-trails-modal__text {
    padding: 2rem;
    flex: 1;
}

.visitor-trails-modal__title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 0.5rem 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.visitor-trails-modal__subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #d4af37;
    margin: 0 0 1.5rem 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
}

.visitor-trails-modal__description {
    font-size: 16px;
    font-weight: 400;
    color: #e0e0e0;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 768px) {
    .visitor-trails-modal__container {
        width: 95%;
        max-height: 95vh;
    }

    .visitor-trails-modal__image-wrapper {
        height: 200px;
    }

    .visitor-trails-modal__text {
        padding: 1.5rem;
    }

    .visitor-trails-modal__title {
        font-size: 20px;
    }

    .visitor-trails-modal__subtitle {
        font-size: 14px;
    }

    .visitor-trails-modal__description {
        font-size: 14px;
    }

    .visitor-trails-modal__close {
        top: 0.5rem;
        right: 0.5rem;
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 768px) {
    .palace-grid {
        padding: 2rem 0;
    }

    .palace-grid__container {
        padding: 0 1rem;
    }

    .palace-grid__items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .palace-grid__item {
        aspect-ratio: 16 / 9;
    }

    .palace-grid__content {
        padding: 1.5rem;
    }

    .palace-grid__title {
        font-size: 18px;
    }

    .palace-grid__subtitle {
        font-size: 13px;
    }

    .stay-in-touch__container {
        padding: 2rem 1rem;
        min-height: 250px;
    }

    .stay-in-touch__overlay {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.1) 100%);
    }

    .stay-in-touch__title {
        font-size: 19px;
    }

    .stay-in-touch__subtitle {
        font-size: 9px;
    }

    .stay-in-touch__button {
        font-size: 8px;
        padding: 0.75rem 1.5rem;
        border-radius: 20px;
    }
}

.footer {
    width: 100%;
    background-color: #000000;
    padding: 0 0 1rem 0;
}

.footer__container {
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__links-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
}

.footer__divider {
    height: 1px;
    background-color: #666666;
    margin: 4rem auto 2rem auto;
    width: 100%;
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

.footer__link {
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.footer__link:hover {
    opacity: 0.7;
}

.footer__logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.footer__logo {
    max-width: 200px;
    height: auto;
    display: block;
}

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

    .footer__container {
        padding: 0 1rem;
    }

    .footer__links {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .footer__link {
        font-size: 11px;
    }

    .footer__logo {
        max-width: 150px;
    }
}

.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #2a2a2a;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.fixed-footer__toggle {
    display: none;
}

.fixed-footer__content {
    overflow: hidden;
}

@media (min-width: 769px) {
    .fixed-footer__content {
        max-height: none !important;
    }
}

.fixed-footer__container {
    max-width: 1850px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.fixed-footer__left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.fixed-footer__title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
}

.fixed-footer__info {
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
}

.fixed-footer__separator {
    width: 1px;
    height: 30px;
    background-color: #666666;
    flex-shrink: 0;
}

.fixed-footer__right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.fixed-footer__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-radius: 20px;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
    text-decoration: none;
    color: inherit;
}

.fixed-footer__button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.fixed-footer__button-primary {
    background-color: #20b2aa;
    color: #ffffff;
}

.fixed-footer__button-secondary {
    background-color: #ffffff;
    color: #000000;
}

.fixed-footer__button-icon {
    width: 1em;
    height: 1em;
    fill: currentColor;
    flex-shrink: 0;
}

.fixed-footer__button-label {
    line-height: 1;
}

@media (max-width: 768px) {
    .fixed-footer__toggle {
        display: none;
    }

    .fixed-footer__toggle:hover {
        background-color: #333333;
    }

    .fixed-footer__toggle-text {
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-decoration: underline;
        text-underline-offset: 4px;
    }

    .fixed-footer__toggle-icon {
        width: 20px;
        height: 20px;
        fill: currentColor;
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

    .fixed-footer__content {
        max-height: none !important;
        overflow: visible;
    }

    .fixed-footer__container {
        padding: 1rem;
        gap: 1rem;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .fixed-footer__left {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        flex: 1 1 auto;
        min-width: 0;
    }

    .fixed-footer__title {
        font-size: 12px;
    }

    .fixed-footer__info {
        font-size: 11px;
    }

    .fixed-footer__separator {
        display: none;
    }

    .fixed-footer__right {
        flex: 0 0 auto;
        justify-content: flex-end;
        gap: 0.75rem;
    }

    .fixed-footer__button {
        font-size: 11px;
        padding: 0;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        flex: 0 0 auto;
        min-width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .fixed-footer__button-primary {
        background-color: #20b2aa;
        border: 2px solid #ffffff;
    }

    .fixed-footer__button-secondary {
        background-color: #ffffff;
        border: 2px solid #000000;
    }

    .fixed-footer__button-label {
        display: none;
    }

    .fixed-footer__button-icon {
        width: 20px;
        height: 20px;
    }
}

/* Checkout Section */
.checkout-section {
    width: 100%;
    min-height: 100vh;
    background-color: #ffffff;
    padding: 4rem 2rem;
}

.checkout-section__container {
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.checkout-content__main {
    flex: 1;
    max-width: 700px;
}

.checkout-content__sidebar {
    width: 350px;
    flex-shrink: 0;
    position: sticky;
    top: 2rem;
    align-self: flex-start;
}

.checkout-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 3rem 0;
    font-family: 'Montserrat', sans-serif;
}

.checkout-form-section {
    margin-bottom: 3rem;
}

.checkout-form-section__title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1.5rem 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkout-form-section__subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    margin: 0 0 1.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.checkout-form-group {
    margin-bottom: 1.5rem;
}

.checkout-form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkout-form-input {
    width: 100%;
    height: 48px;
    border: 1px solid #000000;
    border-radius: 4px;
    padding: 0 1rem;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    box-sizing: border-box;
}

.checkout-form-input:focus {
    outline: none;
    border-color: #008573;
}

.checkout-form-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.checkout-form-input--with-icon {
    padding-left: 3rem;
}

.checkout-form-input-icon {
    position: absolute;
    left: 1rem;
    width: 20px;
    height: 20px;
    color: #666666;
    pointer-events: none;
}

.checkout-form-select {
    width: 100%;
    height: 48px;
    border: 1px solid #000000;
    border-radius: 4px;
    padding: 0 1rem;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 9L1 4h10z' fill='%23000000'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.checkout-form-select:focus {
    outline: none;
    border-color: #008573;
}

.checkout-form-input--error,
.checkout-form-select.checkout-form-input--error {
    border-color: #d32f2f;
}

.checkout-form-input--error:focus,
.checkout-form-select.checkout-form-input--error:focus {
    border-color: #d32f2f;
}

.checkout-form-error {
    display: none;
    color: #d32f2f;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    margin-top: 0.5rem;
    line-height: 1.4;
}

.checkout-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkout-form-help {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #008573;
    background-color: #008573;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.checkout-form-help svg {
    width: 12px;
    height: 12px;
}

.checkout-payment-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #e3f2fd;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.checkout-payment-info__icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #008573;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.checkout-payment-info__icon svg {
    width: 14px;
    height: 14px;
}

.checkout-payment-info__text {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkout-payment-details {
    background-color: #f5f5f5;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.checkout-payment-details__item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.checkout-payment-details__item:last-child {
    margin-bottom: 0;
}

.checkout-payment-details__label {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    font-family: 'Montserrat', sans-serif;
}

.checkout-payment-details__value {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
}

.checkout-form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.checkout-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.checkout-button svg {
    width: 18px;
    height: 18px;
}

.checkout-button--primary {
    background-color: #008573;
    color: #ffffff;
    flex: 1;
    justify-content: center;
}

.checkout-button--primary:hover {
    background-color: #006b5d;
}

.checkout-button--secondary {
    background-color: #666666;
    color: #ffffff;
}

.checkout-button--secondary:hover {
    background-color: #555555;
}

.checkout-basket {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.checkout-basket__header {
    padding: 1.5rem 2rem;
    text-align: center;
}

.checkout-basket__title {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkout-basket__divider {
    border-top: 1px dashed #e0e0e0;
    margin: 0;
}

.checkout-basket__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.checkout-basket__item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkout-basket__item-name {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
}

.checkout-basket__item-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.checkout-basket__item-quantity {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
}

.checkout-basket__item-datetime {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
}

.checkout-basket__item-price {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    margin-top: 0.5rem;
}

.checkout-basket__total {
    padding: 0 2rem 2rem;
}

.checkout-basket__total-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 0 0 1rem 0;
    border-top: 1px dashed #e0e0e0;
}

.checkout-basket__total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-basket__total-label {
    font-size: 16px;
    font-weight: 700;
    color: #008573;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.checkout-basket__total-value {
    font-size: 20px;
    font-weight: 700;
    color: #008573;
    font-family: 'Montserrat', sans-serif;
}

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

    .checkout-content__sidebar {
        width: 100%;
        position: static;
    }
}

/* Studio Detail Page */
.studio-detail {
    width: 100%;
    background-color: #ffffff;
    padding: 4rem 0;
}

.studio-detail__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.studio-detail__header {
    margin-bottom: 3rem;
}

.studio-detail__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.studio-detail__tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #000000;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

.studio-detail__title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 0.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.studio-detail__subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    margin: 0 0 1rem 0;
    font-family: 'Montserrat', sans-serif;
}

.studio-detail__dates {
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.studio-detail__info-table {
    margin: 3rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 2rem 0;
}

.studio-info-table {
    width: 100%;
    border-collapse: collapse;
}

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

.studio-info-table tbody tr:last-child {
    border-bottom: none;
}

.studio-info-table th {
    text-align: left;
    padding: 1rem 1rem 1rem 0;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    vertical-align: top;
    width: 30%;
}

.studio-info-table td {
    padding: 1rem 0;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    vertical-align: top;
}

.studio-detail__content {
    margin: 3rem 0;
}

.studio-detail__description {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.studio-detail__description:last-child {
    margin-bottom: 0;
}

.studio-detail__description--schedule {
    font-weight: 600;
}

.studio-detail__section {
    margin: 3rem 0;
}

.studio-detail__section-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 1.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.studio-detail__section-text {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.studio-detail__activities {
    list-style: none;
    padding: 0;
    margin: 0;
}

.studio-detail__activity {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.studio-detail__activity:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.studio-detail__activity-title {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 0.75rem 0;
    font-family: 'Montserrat', sans-serif;
}

.studio-detail__activity-text {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.studio-detail__booking-content {
    margin-top: 1rem;
}

.studio-detail__booking-content .studio-detail__description {
    margin-bottom: 1rem;
}

.studio-detail__booking-content .studio-detail__description strong {
    font-weight: 700;
    color: #000000;
}

.studio-detail__booking-content .studio-detail__description em {
    font-style: italic;
    color: #666666;
}

.studio-detail__booking-button {
    margin-top: 3rem;
    text-align: center;
}

.button-large {
    padding: 1rem 2rem;
    font-size: 16px;
}

.studio-detail__catalogue-link {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e0e0e0;
}

.studio-detail__catalogue-link-text {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin: 0 0 1rem 0;
    font-family: 'Montserrat', sans-serif;
}

.studio-detail__catalogue-title {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #008573;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.studio-detail__catalogue-title:hover {
    color: #0a4f51;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .studio-detail__container {
        padding: 0 1.5rem;
    }

    .studio-detail__title {
        font-size: 32px;
    }

    .studio-detail__subtitle {
        font-size: 20px;
    }

    .studio-detail__dates {
        font-size: 16px;
    }

    .studio-info-table th {
        width: 35%;
        font-size: 14px;
    }

    .studio-info-table td {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .studio-detail {
        padding: 3rem 0;
    }

    .studio-detail__container {
        padding: 0 1rem;
    }

    .studio-detail__title {
        font-size: 22px;
    }

    .studio-detail__subtitle {
        font-size: 16px;
    }

    .studio-detail__dates {
        font-size: 13px;
    }

    .studio-detail__section-title {
        font-size: 18px;
    }

    .studio-detail__activity-title {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .studio-detail__title {
        font-size: 22px;
    }

    .studio-detail__subtitle {
        font-size: 16px;
    }

    .studio-detail__dates {
        font-size: 13px;
    }
}

@media (max-width: 500px) {
    .studio-detail__title {
        font-size: 20px;
    }

    .studio-detail__subtitle {
        font-size: 15px;
    }

    .studio-detail__dates {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .studio-detail__title {
        font-size: 18px;
    }

    .studio-detail__subtitle {
        font-size: 14px;
    }

    .studio-detail__dates {
        font-size: 11px;
    }
}

@media (max-width: 350px) {
    .studio-detail__title {
        font-size: 16px;
    }

    .studio-detail__subtitle {
        font-size: 13px;
    }

    .studio-detail__dates {
        font-size: 11px;
    }
}

    .studio-detail__info-table {
        margin: 2rem 0;
        padding: 1.5rem 0;
    }

    .studio-info-table th {
        display: block;
        width: 100%;
        padding: 0.75rem 0 0.5rem 0;
        font-size: 14px;
    }

    .studio-info-table td {
        display: block;
        padding: 0 0 1rem 0;
        font-size: 14px;
    }

    .studio-detail__section-title {
        font-size: 20px;
    }

    .studio-detail__activity-title {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .studio-detail__section-title {
        font-size: 18px;
    }

    .studio-detail__activity-title {
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .studio-detail__section-title {
        font-size: 16px;
    }

    .studio-detail__activity-title {
        font-size: 15px;
    }
}

@media (max-width: 400px) {
    .studio-detail__section-title {
        font-size: 15px;
    }

    .studio-detail__activity-title {
        font-size: 14px;
    }
}

@media (max-width: 350px) {
    .studio-detail__section-title {
        font-size: 14px;
    }

    .studio-detail__activity-title {
        font-size: 13px;
    }
}
