/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    line-height: 1.6;
    background-color: #EAEAEA;
}

/* Site Header */
.site-header {
    width: 100%;
    background-color: white;
    z-index: 1000;
    position: relative;
}

.header-top {
    background-color: #754C00;
    width: 100%;
    padding: 12px 0;
}

.header-top-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.language-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.language-links a {
    color: #ffffff;
    text-decoration: none;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.language-links a:hover {
    opacity: 0.8;
}

.header-main {
    background-color: white;
    width: 100%;
    padding: 25px 0;
}

.header-main-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
}

.site-logo {
    max-height: clamp(56px, 6vw, 80px);
    max-width: min(220px, calc(100vw - 80px));
    width: auto;
    height: auto;
    display: block;
}

.header-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.header-links a {
    color: #666666;
    text-decoration: none;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.header-links a:hover {
    color: #333333;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    min-height: 600px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 60px 40px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.logo-section {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.opw-logo {
    width: auto;
    height: auto;
    max-width: 533px;
    display: block;
}

.kilm-logo {
    width: auto;
    height: auto;
    max-width: clamp(200px, 32vw, 400px);
    display: block;
}

.text-content {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.museum-title {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 35px;
    line-height: 53px;
    color: rgb(255, 255, 255);
    letter-spacing: 1px;
    margin: 0;
}

.select-date-button {
    background: none;
    border: none;
    color: white;
    font-family: "Helvetica Neue", "Open Sans", sans-serif;
    font-size: 22px;
    line-height: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.select-date-button-text {
    font-size: 20px;
}

.select-date-button:hover .select-date-arrow,
.select-date-button:focus-visible .select-date-arrow {
    transform: translateY(4px);
}

.select-date-arrow {
    font-size: 18px;
    transition: transform 0.3s;
}

.book-tickets-btn {
    display: inline-block;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    transition: all 0.3s ease;
    width: fit-content;
    background-color: #d32f2f;
    border: 2px solid #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.book-tickets-btn:hover {
    background-color: #b71c1c;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 29px;
    color: rgb(255, 255, 255);
}

.booking-info p {
    margin: 0;
}

/* Content Section */
.content-section {
    background-color: white;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.notice-section {
    text-align: left;
    margin-bottom: 40px;
}

.notice-heading {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-left: 0;
    padding-left: 0;
    color: #333;
}

.notice-content {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 27px;
    color: rgb(48, 48, 48);
    max-width: 900px;
    margin-left: 0;
    padding-left: 0;
}

.notice-content p {
    margin-bottom: 15px;
}

.notice-content p:last-child {
    margin-bottom: 0;
}

.book-link {
    color: #0066cc;
    text-decoration: underline;
}

.book-link:hover {
    color: #0052a3;
}

.divider-line {
    width: 100%;
    height: 1px;
    background-color: #333;
    margin: 40px 0;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.content-column {
    color: #333;
}

.content-heading {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    color: rgb(0, 0, 0);
    margin-bottom: 20px;
}

.content-column p {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    color: rgb(48, 48, 48);
    margin-bottom: 20px;
}

.content-column p:last-child {
    margin-bottom: 0;
}

.content-link {
    color: #0066cc;
    text-decoration: underline;
}

.content-link:hover {
    color: #0052a3;
}

/* Booking Steps Navigation */
.booking-steps-nav {
    background-color: white;
    padding: 20px 0;
    max-width: 1200px;
    margin: 15px auto 15px auto;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.booking-steps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.booking-step {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666666;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: color 0.3s ease;
}

.booking-step.active {
    color: #754C00;
}

.booking-step.active .step-label {
    border-bottom: 2px solid #754C00;
    padding-bottom: 2px;
}

@media (max-width: 768px) {
    .booking-steps-container {
        flex-wrap: wrap;
        gap: 10px;
        padding: 0 20px;
        justify-content: center;
    }

    .booking-step {
        flex: 1 1 calc(33% - 16px);
        min-width: 120px;
        padding: 6px 0;
        justify-content: center;
    }

    .booking-step .step-label {
        font-size: 12px;
        letter-spacing: 0.25px;
    }
}

@media (max-width: 480px) {
    .booking-step {
        flex: 1 1 calc(50% - 10px);
        min-width: 140px;
    }

    .booking-step .step-number {
        font-size: 12px;
    }

    .booking-step .step-label {
        font-size: 11px;
    }
}

.step-number {
    font-weight: 600;
}

.step-label {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Booking Content Section */
.booking-content-section {
    background-color: white;
    max-width: 1200px;
    margin: 15px auto;
    padding: 40px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.booking-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 0;
    margin-left: 0;
    padding-top: 0;
    padding-left: 0;
}

.booking-image-wrapper {
    flex-shrink: 0;
    width: 200px;
}

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

.booking-text-content {
    flex: 1;
}

.booking-title {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 36px;
    color: #333333;
    margin: 0 0 20px 0;
}

.booking-info-content {
    display: flex;
    flex-direction: column;
    font-size: 15px;
    gap: 15px;
}

.contact-section {
    padding: 60px 0;
}

.contact-section .booking-title {
    text-align: center;
}

.contact-section .booking-text-content > p {
    text-align: center;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h1 {
    font-size: 46px;
    margin-bottom: 10px;
    text-align: center;
}

.contact-header p {
    font-size: 20px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 760px;
    text-align: center;
}

.contact-details {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 320px;
    text-align: left;
    font-size: 16px;
    line-height: 1.5;
}

.contact-item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.contact-cta {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    max-width: 420px;
    margin: 0 auto;
}

.contact-cta .book-now-button {
    margin-top: 20px;
}

.booking-info-content p {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
    line-height: 27px;
    color: #333333;
    margin: 0;
}

.booking-info-content strong {
    font-weight: 700;
}

.booking-link {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.booking-link:hover {
    color: #0052a3;
    text-decoration: underline;
}

/* Calendar Section */
.calendar-section {
    width: 100%;
    padding: 5px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.calendar-title {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #000000;
    margin: 0 0 5px 0;
    text-align: center;
    width: 100%;
}

.calendar-legend {
    display: flex;
    gap: 20px;
    margin-bottom: 5px;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
}

.legend-item.available {
    background-color: #28A9E1;
}

.legend-item.sold-out {
    background-color: #700000;
}

.legend-label {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 20px;
    color: #ffffff;
    font-weight: 300;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.calendar-nav-btn {
    background: transparent;
    border: none;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    padding: 5px 10px;
    transition: opacity 0.3s ease;
}

.calendar-nav-btn.prev {
    color: #B2B2B2;
}


.calendar-nav-btn.next {
    color: #74C3EB;
}

.calendar-nav-btn.next:hover {
    color: #28A9E1;
}

.calendar-month-year {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #000000;
    margin: 0;
}

.calendar-grid {
    width: 100%;
}

.calendar-nav-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    margin-bottom: 5px;
}

.calendar-nav-spacer {
    width: 100%;
}

.calendar-nav-row .calendar-nav-btn {
    padding: 0;
    margin: 0;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    margin-bottom: 0;
}

.weekday {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgb(102, 102, 102);
    text-align: center;
    padding: 8px 5px;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.calendar-date {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: rgb(102, 102, 102);
    cursor: pointer;
    border: 1px solid transparent;
    transition: background-color 0.3s ease;
    padding: 3px 5px;
    min-height: 45px;
}

.calendar-date.available {
    color: #ffffff;
    background-color: #28A9E1;
}

.calendar-date.available:hover {
    background-color: #74C3EB;
}

.calendar-date-past {
    color: rgb(102, 102, 102);
    cursor: default;
}

.calendar-date-past:hover {
    background-color: transparent;
}

.calendar-date.sold-out {
    background-color: #700000;
    color: #ffffff;
    cursor: default;
}

.calendar-date.empty {
    cursor: default;
    visibility: hidden;
}

.calendar-date-empty-day {
    color: rgb(102, 102, 102);
    cursor: default;
    background-color: transparent;
    opacity: 0.5;
}

.calendar-date-empty-day:hover {
    background-color: transparent;
}

/* Time Selection Section */
.time-selection-section {
    width: 100%;
}

.time-selection-title {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #000000;
    margin: 0 0 15px 0;
    text-align: center;
}

.time-legend {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    justify-content: center;
}

.time-legend-note {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    color: #333333;
    text-align: center;
    margin: 0 0 15px 0;
}

.selected-date {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #000000;
    margin: 0 0 20px 0;
    text-align: center;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.time-slot {
    padding: 12px 15px;
    border: none;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    min-height: 50px;
}

.time-slot.available {
    background-color: #28A9E1;
}

.time-slot.available:hover {
    background-color: #74C3EB;
}

.time-slot.sold-out {
    background-color: #700000;
    cursor: default;
}

.ticket-count {
    font-weight: 600;
}

.time-selection-actions {
    display: flex;
    justify-content: flex-start;
}

.back-button {
    padding: 5px 20px 5px 25px;
    background-color: white;
    border: 2px solid #000000;
    border-radius: 3px;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 20px;
    color: #000000;
    font-weight: 400;
    line-height: 34px;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: visible;
    white-space: nowrap;
}

.back-button::before {
    content: '‹';
    display: none;
    position: absolute;
    font-size: 36px;
    font-weight: 400;
    color: #000000;
    left: 6px;
    top: 50%;
    transform: translateY(-60%);
    transition: opacity 0.3s ease;
    line-height: 1;
}

.back-button:hover {
    background-color: #f5f5f5;
    border-color: #999999;
}

.back-button:hover::before {
    display: block;
}

/* Ticket Selection Section */
.ticket-selection-section {
    width: 100%;
}

.ticket-selection-title {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #000000;
    margin: 0 0 30px 0;
    text-align: center;
}

.tickets-list {
    margin-bottom: 20px;
}

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

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

.ticket-info {
    flex: 1;
}

.ticket-name {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
}

.ticket-price-quantity {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ticket-price {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
}

.ticket-quantity {
    position: relative;
}

.quantity-select {
    width: 80px;
    height: 35px;
    background-color: #F5F5F5;
    border: 1px solid #CCCCCC;
    padding: 0 25px 0 10px;
    cursor: pointer;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    color: #333333;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 1.5L5 4.5L8.5 1.5' stroke='%23B3B3B3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M1.5 5.5L5 8.5L8.5 5.5' stroke='%23B3B3B3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px 10px;
}

.quantity-select:focus {
    outline: none;
    border-color: #999999;
}

.total-tickets {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin: 20px 0;
    text-align: right;
}

.ticket-notes {
    margin: 30px 0;
    padding: 20px;
}

.ticket-notes p {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
    margin: 0 0 10px 0;
}

.ticket-notes p:last-of-type {
    margin-bottom: 15px;
}

.ticket-notes .heritage-cards-title {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin: 15px 0 0 0;
}

.heritage-cards-section {
    margin: 30px 0;
    padding: 20px;
    background-color: #f9f9f9;
}

.heritage-cards-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.heritage-cards-form {
    flex: 1;
}

.heritage-cards-title {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 15px 0;
}

.heritage-card-field {
    margin-bottom: 15px;
}

.heritage-card-field:last-child {
    margin-bottom: 0;
}

.heritage-card-button {
    width: 100%;
    padding: 5px 50px 5px 20px;
    background-color: white;
    border: 2px solid #000000;
    border-radius: 3px;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 20px;
    color: #000000;
    font-weight: 400;
    line-height: 34px;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: visible;
}

.heritage-card-button:hover {
    background-color: #f5f5f5;
    border-color: #999999;
}

.heritage-card-button:active {
    background-color: #e8e8e8;
}

.heritage-card-image {
    flex-shrink: 0;
}

.heritage-card-img {
    max-width: 150px;
    height: auto;
    display: block;
}

.order-summary-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

.order-summary {
    flex: 1;
    padding: 20px;
    margin: 0;
}

.payment-summary {
    margin: 0 auto 20px;
    width: fit-content;
}

.summary-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-label {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
}

.summary-value {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
}

.summary-value.order-total {
    font-size: 20px;
    color: #754C00;
}

.ticket-selection-actions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 30px;
}

.book-now-button {
    padding: 5px 50px 5px 20px;
    background-color: white;
    border: 2px solid #000000;
    border-radius: 3px;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 20px;
    color: #000000;
    font-weight: 400;
    line-height: 34px;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: visible;
    white-space: nowrap;
}

.book-now-button:hover {
    background-color: #f5f5f5;
    border-color: #999999;
}

.book-now-button:active {
    background-color: #e8e8e8;
}

/* Payment Section */
.payment-section {
    width: 100%;
}

.payment-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.payment-form-wrapper {
    flex: 1;
}

.payment-title {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #000000;
    margin: 0 0 20px 0;
}

.payment-divider {
    width: 100%;
    border-top: 1px solid #e0e0e0;
    margin: 30px 0;
}

.payment-form {
    margin-bottom: 30px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 6px;
}

.form-field {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.form-field label {
    flex: 0 0 150px;
    margin-bottom: 0;
}

.form-field label {
    display: block;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 5px;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    color: #333333;
    background-color: white;
}

.form-input.invalid-input {
    border-color: #d32f2f;
    box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.15);
}

input.form-input[type="text"],
input.form-input[type="email"],
input.form-input[type="tel"],
input.form-input[type="number"] {
    background-color: #F5F5F5;
}

select.form-input {
    background-color: #F5F5F5;
}

.form-input:focus {
    outline: none;
    border-color: #999999;
}

.form-hint {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 12px;
    color: #0066cc;
    margin: 8px 0 12px;
    line-height: 1.5;
    display: block;
}

.error-message {
    display: none;
    font-size: 12px;
    color: #d32f2f;
}

.payment-summary {
    flex-shrink: 0;
    width: 300px;
}

.summary-box {
    background-color: #f5f5f5;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 3px;
}

.summary-box.total-box {
    background-color: #e8e8e8;
}

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

.summary-item-label {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
}

.summary-item-value {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
}

.total-box .summary-item-label,
.total-box .summary-item-value {
    font-weight: 700;
    color: #754C00;
    font-size: 16px;
}

.payment-options {
    margin-top: 30px;
}

.checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.checkbox-field input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
    width: auto;
    height: auto;
}

.checkbox-field label {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 1.5;
    cursor: pointer;
    margin-bottom: 0;
}

.form-link {
    color: #0066cc;
    text-decoration: underline;
}

.form-link:hover {
    color: #0052a3;
}

.terms-link {
    color: #754C00;
    text-decoration: underline;
}

.terms-link:hover {
    color: #5a3a00;
}

.form-input select {
    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 fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 35px;
}

.payment-confirmation {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.confirmation-checkboxes {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-actions {
    display: flex;
    align-items: flex-start;
}

.pay-now-button {
    padding: 5px 50px 5px 20px;
    background-color: white;
    border: 2px solid #000000;
    border-radius: 3px;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 20px;
    color: #000000;
    font-weight: 400;
    line-height: 34px;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: visible;
    white-space: nowrap;
}

.pay-now-button:hover {
    background-color: #f5f5f5;
    border-color: #999999;
}

.pay-now-button:active {
    background-color: #e8e8e8;
}

.payment-back-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.payment-back-section .back-button {
    padding: 5px 20px 5px 20px;
    background-color: white;
    border: 2px solid #000000;
    border-radius: 3px;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 20px;
    color: #000000;
    font-weight: 400;
    line-height: 34px;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: visible;
    white-space: nowrap;
}

.payment-back-section .back-button::before {
    content: '‹';
    display: none;
    position: absolute;
    font-size: 36px;
    font-weight: 400;
    color: #000000;
    left: 6px;
    top: 50%;
    transform: translateY(-60%);
    transition: opacity 0.3s ease;
    line-height: 1;
}

.payment-back-section .back-button:hover {
    background-color: #f5f5f5;
    border-color: #999999;
}

.payment-back-section .back-button:hover::before {
    display: block;
}

.payment-back-section .back-button:active {
    background-color: #e8e8e8;
}

.payment-footer {
    background-color: white;
    padding: 30px 20px;
}

.payment-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.payment-footer-logo {
    max-width: 240px;
    width: 100%;
    height: auto;
    display: block;
}

/* Secure Payment Page */
body {
    margin: 0;
    padding: 0;
}

.secure-payment-page {
    width: 100%;
    background-color: #f5f5f5;
    padding: 0 20px 40px;
    min-height: 100vh;
    box-sizing: border-box;
}

.secure-payment-header {
    width: calc(100% + 40px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 40px -20px;
    background-color: #ffffff;
    padding: 20px 30px;
    border-radius: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

.payment-header-left {
    display: flex;
    align-items: center;
}

.header-logo {
    max-height: 70px;
    width: auto;
    display: block;
}

.payment-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.header-title {
    font-family: "Helvetica Neue", "Open Sans", sans-serif;
    font-size: 23px;
    line-height: 35px;
    font-weight: 400;
    color: rgb(0, 76, 66);
    margin: 0;
    text-transform: uppercase;
}

.secure-payment-label {
    font-family: "Helvetica Neue", "Open Sans", sans-serif;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    color: rgb(41, 41, 41);
    margin: 0;
    text-transform: uppercase;
}

.payment-details-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.payment-details-header {
    background-color: #3A3D46;
    padding: 20px;
}

.payment-details-header h2 {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
    font-weight: 100;
    color: white;
    margin: 0;
    line-height: 19px;
}

.card-logos-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    padding: 12px 30px 0;
    background-color: white;
    margin-bottom: 8px;
}

.card-logo-img {
    height: 20px;
    width: auto;
    object-fit: contain;
    display: block;
}

.card-number-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
}

.card-logos-inline {
    display: flex;
    gap: 6px;
    align-items: center;
}

.card-number-wrapper {
    margin-top: 6px;
}

.card-payment-form {
    padding: 30px;
}

.form-field-group {
    margin-bottom: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-row .form-field-group {
    flex: 1;
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 8px;
}

.card-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    color: #333333;
    background-color: white;
    box-sizing: border-box;
}

.card-input:focus {
    outline: none;
    border-color: #999999;
}

.card-input.error {
    border-color: #d32f2f;
}

.card-number-wrapper {
    position: relative;
}

.card-logos {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 8px;
    align-items: center;
}

.card-logo {
    font-size: 10px;
    font-weight: 600;
    color: #666666;
    padding: 2px 4px;
    background-color: #f0f0f0;
    border-radius: 2px;
}

.error-message {
    display: block;
    color: #d32f2f;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 12px;
    margin-top: 5px;
}

#cardNumberError {
    display: block;
}

.security-code-wrapper {
    position: relative;
}

.security-code-help {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.help-icon-button {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    cursor: help;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}

.help-icon-button:focus-visible {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
    border-radius: 999px;
}

.help-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.help-tooltip {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: 240px;
    background-color: white;
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    font-size: 13px;
    line-height: 1.4;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.security-code-help:hover .help-tooltip,
.security-code-help:focus-within .help-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.help-tooltip-title {
    font-weight: 600;
    margin: 0 0 4px;
    font-size: 14px;
}

.help-tooltip p {
    margin: 0;
}

.pay-now-submit-button {
    width: 100%;
    padding: 15px;
    background-color: #0066cc;
    border: none;
    border-radius: 3px;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    transition: background-color 0.2s;
}

.pay-now-submit-button:hover {
    background-color: #0052a3;
}

.pay-now-submit-button:active {
    background-color: #004080;
}

.lock-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.security-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 8px;
    color: #333333;
}

.security-info-left {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #00BC00;
    padding: 5px 30px 5px 10px;
    border-radius: 3px;
}

.security-lock-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: inline-block;
    filter: invert(49%) sepia(60%) saturate(1236%) hue-rotate(75deg) brightness(96%) contrast(91%);
}

.security-info-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}
.security-text-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    font-size: 12px;
    line-height: 1.2;
}
.security-processed-label {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.global-payments {
    text-align: end;
}

.global-payments-logo {
    width: 25px;
    height: auto;
    object-fit: contain;
    display: inline-block;
}

.exhibition-block {
    margin-top: 20px;
}

.exhibition-image-wrapper {
    margin-bottom: 15px;
    overflow: hidden;
}

.exhibition-image {
    width: 50%;
    height: autdo;
    display: block;
}

.exhibition-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.exhibition-title {
    font-size: 16px;
    font-style: italic;
    text-align: center;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 10px;
    line-height: 1.4;
}

.exhibition-link:hover .exhibition-title {
    color: #0052a3;
}

.exhibition-caption {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 5px;
    color: #666;
}

/* Quick Links Section */
.quick-links-section {
    background-color: white;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-links-divider {
    width: 100%;
    height: 1px;
    background-color: #333;
    margin-bottom: 60px;
}

.quick-links-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.quick-link-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quick-link-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
    display: block;
}

.quick-link-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #333;
}

.quick-link-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .secure-payment-header {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin: 0 0 24px 0;
        padding: 18px;
        border-radius: 12px;
        box-sizing: border-box;
    }

    .payment-details-container {
        width: 100%;
        margin: 0 auto 20px;
        box-sizing: border-box;
    }

    .card-payment-form {
        padding: 26px;
    }

    .payment-details-header {
        padding: 18px;
    }

    .payment-header-right {
        gap: 6px;
    }

    .payment-header-right p {
        margin: 0;
        font-size: 13px;
        line-height: 18px;
        word-break: break-word;
    }

    .header-logo {
        max-height: 60px;
    }

    .header-top-content {
        padding: 0 24px;
        justify-content: flex-start;
    }

    .language-links {
        gap: 18px;
        font-size: 13px;
    }

    .header-main-content {
        padding: 0 24px;
    }

    .hero-section {
        min-height: 520px;
    }

    .hero-overlay {
        padding: 50px 30px;
    }

    .hero-content {
        gap: 24px;
    }

    .museum-title {
        font-size: 32px;
        line-height: 45px;
    }

    .book-tickets-btn {
        font-size: 32px;
    }

    .booking-info {
        font-size: 20px;
        line-height: 28px;
    }

    .site-logo {
        max-height: 72px;
        max-width: min(200px, calc(100vw - 90px));
    }

    .opw-logo {
        max-width: 500px;
    }
}

@media (max-width: 768px) {

    .hero-content {
        flex-direction: column;
        gap: 30px;
    }

    .museum-title {
        font-size: 32px;
        line-height: 48px;
    }

    .book-tickets-btn {
        font-size: 24px;
    }

    .hero-overlay {
        padding: 40px 24px;
    }

    .site-logo {
        max-height: 70px;
        max-width: min(200px, calc(100vw - 70px));
    }

    .opw-logo {
        max-width: 450px;
    }

    .kilm-logo {
        max-width: clamp(220px, 40vw, 330px);
    }

    .header-main-content {
        padding: 0 20px;
    }

    .header-links {
        gap: 18px;
    }

    .hero-section {
        min-height: 480px;
    }

    .museum-title {
        font-size: 30px;
        line-height: 42px;
    }

    .booking-info {
        font-size: 18px;
        line-height: 26px;
    }

    html,
    body {
        overflow-x: hidden;
        min-width: 0;
    }

    .secure-payment-page {
        padding: 0 10px 40px;
    }

    .payment-details-container {
        border-radius: 8px;
        max-width: 100%;
    }

    .payment-details-header h2 {
        font-size: 18px;
    }

    .card-payment-form {
        padding: 22px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .form-row .form-field-group {
        width: 100%;
    }

    .security-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .help-tooltip {
        width: 220px;
        right: auto;
        left: 0;
    }

    .secure-payment-header {
        width: 100%;
        margin: 0;
        padding: 16px;
        border-radius: 0;
        box-sizing: border-box;
        gap: 8px;
    }

    .header-logo {
        max-height: 50px;
    }

    .payment-header-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .payment-header-right p {
        text-align: left;
        word-break: break-word;
    }

    .content-section {
        padding: 40px 15px;
    }

    .main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .notice-heading {
        font-size: 20px;
    }

    .content-heading {
        font-size: 24px;
        line-height: 32px;
    }


    .quick-links-section {
        padding: 40px 15px;
    }

    .quick-links-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .quick-links-divider {
        margin-bottom: 40px;
    }
}

@media (max-width: 640px) {
    .secure-payment-header {
        padding: 16px;
        gap: 12px;
    }

    /* tablet+ phone header adjustments */
    .site-header {
        position: sticky;
        top: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(8px);
    }

    .header-top {
        padding: 10px 0;
    }

    .header-top-content {
        padding: 0 16px;
        justify-content: center;
    }

    .header-main-content {
        padding: 0 18px;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .header-links {
        flex-direction: column;
        gap: 12px;
    }

    .header-logo {
        max-height: 42px;
    }

    .payment-header-left,
    .header-logo {
        width: 100%;
        justify-content: center;
    }

    .payment-header-right {
        width: 100%;
        gap: 4px;
        align-items: center;
    }

    .header-title {
        font-size: 16px;
        line-height: 20px;
    }

    .secure-payment-label {
        font-size: 11px;
        line-height: 16px;
    }

    /* hero adjustments */
    .hero-section {
        min-height: 440px;
    }

    .hero-overlay {
        padding: 36px 20px;
    }

    .hero-content {
        gap: 20px;
    }

    .museum-title {
        font-size: 28px;
        line-height: 38px;
    }

    .book-tickets-btn {
        width: 100%;
        font-size: 26px;
        padding: 14px 0;
    }

    .booking-info {
        font-size: 16px;
        line-height: 24px;
    }

    .opw-logo {
        max-width: 400px;
    }

    .header-main-content {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .header-logo {
        width: 100%;
        justify-content: center;
    }

    .site-logo {
        margin: 0 auto;
    }

    .header-links {
        width: 100%;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

@media (max-width: 540px) {
    .secure-payment-header {
        padding: 14px;
    }

    .payment-details-header h2 {
        font-size: 16px;
    }

    .card-input {
        font-size: 13px;
        padding: 10px;
    }

    .security-info {
        font-size: 12px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .security-info-right {
        display: none;
    }

    .security-code-help {
        display: none;
    }

    .help-tooltip {
        display: none;
    }

    .header-logo {
        max-height: 36px;
    }

    .header-top-content {
        padding: 0 16px;
        justify-content: center;
    }

    .header-main-content {
        padding: 0 16px;
    }

    .site-logo {
        max-height: 56px;
        max-width: min(160px, calc(100vw - 60px));
    }

    .opw-logo {
        max-width: 360px;
    }

    .hero-overlay {
        padding: 32px 18px;
    }

    .hero-section {
        min-height: 420px;
    }

    .museum-title {
        font-size: 26px;
        line-height: 36px;
    }

    .booking-info {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 430px) {
    .secure-payment-page {
        padding: 0 8px 32px;
    }

    .secure-payment-header {
        gap: 6px;
        padding: 12px;
    }

    .payment-header-left {
        gap: 8px;
    }

    .header-title {
        font-size: 14px;
        line-height: 18px;
    }

    .secure-payment-label {
        font-size: 10px;
        line-height: 14px;
    }

    .payment-details-container {
        box-shadow: none;
        border-radius: 6px;
    }

    .card-payment-form {
        padding: 18px;
    }

    .form-field-group {
        margin-bottom: 18px;
    }

    .pay-now-submit-button {
        padding: 14px;
        font-size: 15px;
    }

    .security-info {
        font-size: 11px;
    }

    .help-tooltip {
        width: 180px;
    }

    .header-logo {
        max-height: 32px;
    }

    .header-top-content {
        padding: 0 12px;
        justify-content: center;
    }

    .header-main-content {
        padding: 0 12px;
    }

    .site-logo {
        max-height: 45px;
        max-width: min(140px, calc(100vw - 50px));
    }

    .opw-logo {
        max-width: 320px;
    }

    .hero-overlay {
        padding: 26px 12px;
    }

    .hero-section {
        min-height: 360px;
    }

    .museum-title {
        font-size: 22px;
        line-height: 32px;
    }

    .book-tickets-btn {
        font-size: 24px;
    }

    .booking-info {
        font-size: 15px;
        line-height: 22px;
    }
}

@media (max-width: 480px) {
    .quick-links-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .booking-content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .booking-image-wrapper {
        width: 100%;
        max-width: 280px;
    }

    .booking-text-content {
        width: 100%;
        padding: 0 12px;
    }

    .booking-info-content {
        font-size: 14px;
        line-height: 24px;
    }

    .booking-info-content p {
        margin-bottom: 10px;
    }

    .time-selection-section {
        padding: 0 12px;
    }

    .time-selection-title {
        font-size: 26px;
    }

    .time-legend {
        flex-wrap: wrap;
        gap: 12px;
    }

    .time-slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 8px;
    }

    .time-slot {
        font-size: 14px;
        padding: 10px;
        min-height: 45px;
    }

    .time-selection-actions {
        justify-content: center;
        margin-top: 20px;
    }

    .back-button {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .book-now-button {
        width: 100%;
        padding: 12px 16px;
        font-size: 18px;
        text-align: center;
        white-space: normal;
    }

    .book-now-button::after {
        display: none;
    }

    .payment-back-section .back-button {
        width: auto;
        min-width: 140px;
        padding: 10px 25px;
        justify-content: center;
    }

    .heritage-section .ticket-selection-actions .back-button,
    .heritage-section .heritage-card-button {
        width: auto;
        min-width: 140px;
        padding: 10px 25px;
        text-align: center;
        justify-content: center;
        white-space: normal;
    }

    .ticket-selection-actions .back-button {
        width: 100%;
        padding: 12px 0;
        text-align: center;
        white-space: normal;
    }
}

/* Historical Images Section */
.historical-images-section {
    background-color: white;
    padding: 60px 0;
}

.historical-images-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    width: 100%;
    margin: 0;
    background-color: white;
}

.historical-image-wrapper {
    background-color: white;
    padding: 2px;
}

.historical-image {
    width: 100%;
    height: auto;
    display: block;
    border: 2px solid white;
}

/* Info Blocks Section */
.info-blocks-section {
    background-color: white;
    padding: 40px 20px;
}

.info-blocks-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-block-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    object-fit: contain;
}

.info-block-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    text-align: center;
}

.info-link {
    color: #0066cc;
    text-decoration: underline;
}

.info-link:hover {
    color: #0052a3;
}

/* Footer */
.main-footer {
    background-color: white;
    color: #333;
    position: relative;
}

.footer-main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.index-page .main-footer {
    background-color: #004D44;
    color: #fff;
}

.index-page .footer-main-content {
    justify-content: center;
}

.index-page .footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px;
}

.index-page .footer-link {
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 14px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-address {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.footer-address p {
    margin: 0 0 5px 0;
}

.footer-address p:last-child {
    margin-bottom: 0;
}

.footer-address strong {
    font-weight: 600;
}

.footer-enquiries,
.footer-booking-enquiries {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.footer-enquiries p,
.footer-booking-enquiries p {
    margin: 0 0 10px 0;
    font-weight: 600;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.footer-contact-item a {
    color: #006633;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-contact-item a:hover {
    opacity: 0.8;
}

.footer-logo {
    flex-shrink: 0;
}

.opw-footer-logo {
    max-width: clamp(180px, 20vw, 300px);
    width: 100%;
    height: auto;
    display: block;
}

.footer-bottom {
    background-color: #754C00;
    padding: 15px 0;
}

.footer-bottom-links {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-bottom-link {
    color: white;
    text-decoration: none;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.footer-bottom-link:hover {
    opacity: 0.8;
}

/* Footer Copyright and Social Section */
.footer-copyright-section {
    background-color: white;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
}

.footer-copyright-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    color: #999999;
}

.footer-copyright p {
    margin: 0;
}

.footer-copyright-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.copyright-social-icon {
    display: flex;
    align-items: center;
    height: 24px;
}

.copyright-social-icon:hover {
    opacity: 0.7;
}

.copyright-social-icon img {
    height: 24px;
    width: auto;
    object-fit: contain;
    opacity: 0.6;
}

.copyright-social-icon img[alt="Twitter"] {
    height: 28px;
}

/* Footer Social Section */
.footer-social-section {
    background-color: white;
    padding: 30px 20px;
}

.footer-social-container {
    max-width: 1200px;
    margin: 0 0 0 auto;
    display: flex;
    justify-content: flex-end;
    padding-left: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;

}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;

}

.social-icon:hover {
    opacity: 0.8;
}

.scroll-to-top {
    position: fixed;
    right: 20px;
    bottom: 120px;
    background-color: #999999;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease, transform 0.3s ease, bottom 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateX(60px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.scroll-to-top:hover {
    background-color: #888888;
}

.scroll-to-top:active {
    background-color: #777777;
}

.scroll-to-top svg {
    width: 8px;
    height: 8px;
}

.scroll-to-top svg {
    width: 12px;
    height: 12px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .historical-images-container {
        grid-template-columns: 1fr;
    }

    .info-blocks-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-social-section {
        padding: 20px 15px;
    }

    .scroll-to-top {
        right: 15px;
        bottom: 100px;
        width: 35px;
        height: 35px;
    }

    .opw-footer-logo {
        max-width: clamp(140px, 35vw, 220px);
    }

    .footer-main-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

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

/* Payment Section */
.payment-section {
    width: 100%;
}

.payment-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.payment-form-wrapper {
    flex: 1;
}

.payment-title {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #000000;
    margin: 0 0 20px 0;
}

.payment-form {
    margin-bottom: 30px;
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 5px;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    color: #333333;
    background-color: white;
}

.form-input:focus {
    outline: none;
    border-color: #999999;
}

.form-hint {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 12px;
    color: #0066cc;
    margin: 8px 0 12px;
    line-height: 1.5;
    display: block;
}

.payment-summary {
    flex-shrink: 0;
    width: 300px;
}

.summary-box {
    background-color: #f5f5f5;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 3px;
}

.summary-box.total-box {
    background-color: #e8e8e8;
}

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

.summary-item-label {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
}

.summary-item-value {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
}

.total-box .summary-item-label,
.total-box .summary-item-value {
    font-weight: 700;
    color: #754C00;
    font-size: 16px;
}
