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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #fff;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background-color: #fff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.logo-container a {
    text-decoration: none;
    display: inline-block;
    line-height: 0;
}

.logo {
    height: 50px;
    width: auto;
    display: block;
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    position: relative;
    text-decoration: none;
    color: #333;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 0;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-item:hover {
    color: #0066cc;
}

.nav-item.has-dropdown::after {
    content: '';
    width: 5px;
    height: 5px;
    margin-left: 6px;
    display: inline-block;
    vertical-align: 0.15em;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    border-radius: 1px;
    transition: transform 0.3s, border-color 0.3s;
}

.nav-item:hover.has-dropdown::after {
    border-color: #0066cc;
}

/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
    margin-top: 10px;
}

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

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: background-color 0.3s;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    color: #0066cc;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 2100;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s;
    display: block;
}

/* Burger menu stays the same when active - no cross icon */

/* Mobile Navigation */
.nav-mobile {
    display: none;
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    width: 90%;
    max-width: 400px;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    overflow-y: auto;
    max-height: calc(100vh - 100px);
    padding: 0;
}

.nav-mobile.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-mobile-overlay {
    display: none !important;
}

.mobile-nav-item {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    background-color: #FAFAFA;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s;
}

.mobile-nav-item:first-child {
    border-top: none;
}

.mobile-nav-item.has-dropdown {
    background-color: #FAFAFA;
    font-weight: 700;
}

.mobile-nav-item.has-dropdown::after {
    display: none;
}

.mobile-dropdown {
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown.active {
    max-height: 500px;
}

.mobile-dropdown-item {
    display: block;
    padding: 12px 20px 12px 40px;
    color: #333;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 300;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s;
}

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

/* Slider */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 40%; /* Aspect ratio for images - cropped 20% from bottom */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
}

.slide-logos {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding-top: 60px;
    padding-bottom: 80px;
    z-index: 5;
    width: 100%;
    max-height: 100%;
    box-sizing: border-box;
}

.slide-logos > .logo-top + .logo-bottom {
    margin-bottom: 0;
}

.slide-logos > .logo-bottom + .slide-button {
    margin-top: 20px;
}

/* Optimized styles for screens wider than 768px - making elements flexible and visible */
@media (min-width: 769px) {
    .slide-logos {
        max-height: 100%;
        padding-top: clamp(40px, 4vh, 60px);
        padding-bottom: clamp(60px, 8vh, 80px);
        gap: clamp(25px, 3vh, 40px);
        box-sizing: border-box;
        justify-content: center;
        align-items: center;
    }

    .slide-logos .logo-top {
        width: min(700px, 60vw);
        max-width: 100%;
        max-height: min(280px, 25vh);
        height: auto;
        object-fit: contain;
        flex-shrink: 1;
    }

    .slide-logos .logo-bottom {
        width: min(600px, 50vw);
        max-width: 100%;
        max-height: min(240px, 20vh);
        height: auto;
        object-fit: contain;
        flex-shrink: 1;
    }

    .slide-button {
        font-size: clamp(14px, 1.2vw, 16px);
        padding: clamp(12px, 1.2vh, 15px) clamp(24px, 2.5vw, 30px);
        max-width: min(500px, 45vw);
        width: auto;
        white-space: nowrap;
        flex-shrink: 0;
        margin-top: clamp(10px, 1.5vh, 20px);
    }

    /* Ensure button doesn't overflow */
    .slide-logos > .logo-bottom + .slide-button {
        margin-top: clamp(10px, 1.5vh, 20px);
    }
}

/* Prevent elements from going outside visible area on screens less than 2080px */
@media (max-width: 2080px) {
    .slide {
        overflow: hidden;
    }

    .slide-logos {
        max-height: 100%;
        padding-bottom: 80px;
        box-sizing: border-box;
    }

    /* Only apply these if not in the critical 769-1770px range */
    .slide-logos .logo-top {
        max-height: min(260px, 24vh);
    }

    .slide-logos .logo-bottom {
        max-height: min(200px, 16vh);
    }

    .slide-button {
        max-height: 60px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    /* Ensure button doesn't overflow */
    .slide-logos > .logo-bottom + .slide-button {
        margin-top: 15px;
    }
}

/* Override for critical range 769-1770px */
@media (min-width: 769px) and (max-width: 1770px) {
    .slide-logos .logo-top {
        max-height: min(180px, 18vh) !important;
    }

    .slide-logos .logo-bottom {
        max-height: min(150px, 14vh) !important;
    }
}

/* Additional constraints for medium screens where elements might overflow */
/* Critical range: 769px - 1770px - logo-top must shrink to fit all elements */
@media (min-width: 769px) and (max-width: 1770px) {
    .slide-logos {
        padding-top: clamp(30px, 3vh, 50px) !important;
        gap: clamp(15px, 2vh, 30px) !important;
        padding-bottom: clamp(50px, 6vh, 70px) !important;
        max-height: 100% !important;
        overflow: visible;
    }

    .slide-logos .logo-top {
        width: min(550px, 50vw) !important;
        max-width: min(550px, 50vw) !important;
        max-height: min(180px, 18vh) !important;
        height: auto !important;
        object-fit: contain;
        flex-shrink: 1;
    }

    .slide-logos .logo-bottom {
        width: min(450px, 42vw) !important;
        max-width: min(450px, 42vw) !important;
        max-height: min(150px, 14vh) !important;
        height: auto !important;
        object-fit: contain;
        flex-shrink: 1;
    }

    .slide-button {
        font-size: clamp(13px, 1.1vw, 15px) !important;
        padding: clamp(10px, 1vh, 13px) clamp(20px, 2.2vw, 26px) !important;
        max-width: min(400px, 42vw) !important;
        flex-shrink: 0;
        margin-top: clamp(8px, 1vh, 15px) !important;
    }
}

/* Progressive scaling for 769-1770px range */
@media (min-width: 769px) and (max-width: 1400px) {
    .slide-logos .logo-top {
        max-height: min(170px, 17vh) !important;
        width: min(520px, 48vw) !important;
        max-width: min(520px, 48vw) !important;
    }

    .slide-logos .logo-bottom {
        max-height: min(140px, 13vh) !important;
        width: min(420px, 40vw) !important;
        max-width: min(420px, 40vw) !important;
    }

    .slide-button {
        font-size: clamp(12.5px, 1.05vw, 14px) !important;
        padding: clamp(9px, 0.95vh, 12px) clamp(18px, 2vw, 24px) !important;
        max-width: min(380px, 40vw) !important;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .slider {
        padding-bottom: 55% !important; /* Increased height for better element visibility */
    }

    .slide-logos {
        gap: clamp(8px, 1.2vh, 16px) !important;
        padding-top: clamp(22px, 2.2vh, 35px) !important;
        padding-bottom: clamp(40px, 4.5vh, 55px) !important;
    }

    .slide-logos .logo-top {
        max-height: min(120px, 12vh) !important;
        width: min(380px, 38vw) !important;
        max-width: min(380px, 38vw) !important;
    }

    .slide-logos .logo-bottom {
        max-height: min(95px, 9vh) !important;
        width: min(300px, 30vw) !important;
        max-width: min(300px, 30vw) !important;
    }

    .slide-button {
        font-size: clamp(10px, 0.85vw, 11.5px) !important;
        padding: clamp(7px, 0.7vh, 9px) clamp(14px, 1.5vw, 18px) !important;
        max-width: min(280px, 30vw) !important;
    }
}

/* Additional breakpoint for smoother scaling between 900-1200px */
@media (min-width: 769px) and (max-width: 900px) {
    .slider {
        padding-bottom: 58% !important; /* Even taller for smaller screens in this range */
    }

    .slide-logos {
        gap: clamp(6px, 1vh, 14px) !important;
        padding-top: clamp(20px, 2vh, 32px) !important;
        padding-bottom: clamp(38px, 4vh, 52px) !important;
    }

    .slide-logos .logo-top {
        max-height: min(110px, 11vh) !important;
        width: min(350px, 35vw) !important;
        max-width: min(350px, 35vw) !important;
    }

    .slide-logos .logo-bottom {
        max-height: min(85px, 8vh) !important;
        width: min(280px, 28vw) !important;
        max-width: min(280px, 28vw) !important;
    }

    .slide-button {
        font-size: clamp(9.5px, 0.8vw, 11px) !important;
        padding: clamp(6px, 0.65vh, 8px) clamp(12px, 1.4vw, 16px) !important;
        max-width: min(260px, 28vw) !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .slider {
        padding-bottom: 56% !important; /* Increased height for tablet range */
    }

    .slide-logos {
        gap: clamp(6px, 1vh, 14px) !important;
        padding-top: clamp(20px, 2vh, 32px) !important;
        padding-bottom: clamp(38px, 4vh, 52px) !important;
    }

    .slide-logos .logo-top {
        max-height: min(115px, 11.5vh) !important;
        width: min(360px, 36vw) !important;
        max-width: min(360px, 36vw) !important;
    }

    .slide-logos .logo-bottom {
        max-height: min(90px, 8.5vh) !important;
        width: min(290px, 29vw) !important;
        max-width: min(290px, 29vw) !important;
    }

    .slide-button {
        font-size: clamp(9.5px, 0.8vw, 11px) !important;
        padding: clamp(6px, 0.65vh, 8px) clamp(12px, 1.4vw, 16px) !important;
        max-width: min(270px, 29vw) !important;
    }
}

@media (min-width: 1771px) and (max-width: 1868px) {
    .slide-logos {
        padding-top: clamp(45px, 4.5vh, 58px);
        gap: clamp(28px, 3.2vh, 38px);
        padding-bottom: clamp(65px, 7.5vh, 75px);
    }

    .slide-logos .logo-top {
        width: min(650px, 58vw);
        max-height: min(260px, 23vh);
        height: auto;
    }

    .slide-logos .logo-bottom {
        width: min(550px, 48vw);
        max-height: min(210px, 17vh);
        height: auto;
    }

    .slide-button {
        font-size: clamp(14px, 1.3vw, 15.5px);
        padding: clamp(12px, 1.3vh, 14px) clamp(24px, 2.8vw, 28px);
        max-width: min(480px, 48vw);
    }
}

@media (min-width: 1771px) and (max-width: 1600px) {
    .slide-logos {
        padding-top: clamp(42px, 4.2vh, 56px);
        gap: clamp(26px, 3vh, 36px);
        padding-bottom: clamp(62px, 7vh, 72px);
    }

    .slide-logos .logo-top {
        width: min(620px, 56vw);
        max-height: min(250px, 22.5vh);
    }

    .slide-logos .logo-bottom {
        width: min(520px, 46vw);
        max-height: min(205px, 16.5vh);
    }

    .slide-button {
        font-size: clamp(14px, 1.25vw, 15px);
        padding: clamp(12px, 1.25vh, 13.5px) clamp(24px, 2.6vw, 27px);
        max-width: min(460px, 46vw);
    }
}

@media (min-width: 1771px) and (max-width: 1400px) {
    .slide-logos {
        padding-top: clamp(40px, 4vh, 55px);
        gap: clamp(25px, 2.8vh, 35px);
        padding-bottom: clamp(60px, 6.8vh, 70px);
    }

    .slide-logos .logo-top {
        width: min(600px, 55vw);
        max-height: min(240px, 22vh);
    }

    .slide-logos .logo-bottom {
        width: min(500px, 45vw);
        max-height: min(200px, 16vh);
    }

    .slide-button {
        font-size: clamp(14px, 1.2vw, 14.5px);
        padding: clamp(12px, 1.2vh, 13px) clamp(24px, 2.5vw, 26px);
        max-width: min(440px, 44vw);
    }
}

@media (min-width: 1771px) and (max-width: 1200px) {
    .slide-logos {
        padding-top: clamp(38px, 3.8vh, 50px);
        gap: clamp(24px, 2.6vh, 32px);
        padding-bottom: clamp(58px, 6.2vh, 65px);
    }

    .slide-logos .logo-top {
        width: min(550px, 50vw);
        max-height: min(220px, 20vh);
    }

    .slide-logos .logo-bottom {
        width: min(450px, 40vw);
        max-height: min(180px, 15vh);
    }

    .slide-button {
        font-size: clamp(13.5px, 1.15vw, 14px);
        padding: clamp(11.5px, 1.15vh, 12.5px) clamp(22px, 2.3vw, 25px);
        max-width: min(420px, 42vw);
    }
}


@media (max-width: 900px) {
    .slide-logos {
        padding-top: 40px;
        gap: 28px;
        padding-bottom: 55px;
    }

    .slide-logos .logo-top {
        width: min(450px, 48vw);
        max-height: min(180px, 16vh);
    }

    .slide-logos .logo-bottom {
        width: min(360px, 38vw);
        max-height: min(140px, 13vh);
    }

    .slide-button {
        font-size: 14px;
        padding: 12px 22px;
        max-width: 55vw;
        flex-shrink: 0;
    }
}

@media (max-width: 800px) {
    .slide-logos {
        padding-top: 32px;
        gap: 24px;
        padding-bottom: 55px;
    }

    .slide-logos .logo-top {
        width: min(420px, 62vw);
        max-height: min(165px, 17vh);
    }

    .slide-logos .logo-bottom {
        width: min(330px, 48vw);
        max-height: min(130px, 12.5vh);
    }

    .slide-button {
        font-size: 13.5px;
        padding: 11.5px 21px;
        max-width: 60vw;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .slide-logos {
        padding-top: 25px;
        gap: 20px;
        padding-bottom: 55px;
    }

    .slide-logos .logo-top {
        width: min(380px, 65vw);
        max-height: min(150px, 18vh);
    }

    .slide-logos .logo-bottom {
        width: min(300px, 50vw);
        max-height: min(120px, 12vh);
    }

    .slide-button {
        font-size: 13px;
        padding: 11px 20px;
        max-width: 65vw;
        flex-shrink: 0;
    }
}

/* Base styles - only apply when not in critical 769-1770px range */
.slide-logos .logo-top {
    width: auto;
    height: auto;
    max-width: 700px;
    max-height: 280px;
    object-fit: contain;
    display: block;
    /* Responsive scaling - more adaptive */
    width: min(700px, 60vw);
    max-height: min(280px, 25vh);
    height: auto;
}

/* Override base styles for critical range */
@media (min-width: 769px) and (max-width: 1770px) {
    .slide-logos .logo-top {
        width: min(550px, 50vw) !important;
        max-width: min(550px, 50vw) !important;
        max-height: min(180px, 18vh) !important;
    }
}

.slide-logos .logo-bottom {
    width: auto;
    height: auto;
    max-width: 600px;
    max-height: 240px;
    object-fit: contain;
    display: block;
    /* Responsive scaling */
    width: min(600px, 50vw);
    height: auto;
}

/* Override base styles for critical range */
@media (min-width: 769px) and (max-width: 1770px) {
    .slide-logos .logo-bottom {
        width: min(450px, 42vw) !important;
        max-width: min(450px, 42vw) !important;
        max-height: min(150px, 14vh) !important;
    }
}

.slide-button {
    background-color: #582D40;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    transition: background-color 0.3s, transform 0.3s;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slide-button:hover {
    background-color: #4a2535;
    transform: translateY(-2px);
}

.button-text {
    display: inline-block;
}

.button-arrow {
    display: inline-block;
    font-size: 18px;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-controls input[type="radio"] {
    display: none;
}

.slider-controls label {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.slider-controls label:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.slider-controls input[type="radio"]:checked + label {
    background-color: #fff;
    border-color: #fff;
}

/* Information Section */
.info-section {
    background-color: #fff;
    padding: 60px 40px;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.info-left h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.info-left p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.accessibility-block {
    margin-top: 40px;
}

.accessibility-block h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.accessibility-block p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 12px;
}

.info-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.opening-times h3,
.ticket-prices h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.opening-times p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 8px;
}

.ticket-type {
    margin-bottom: 25px;
}

.ticket-type h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.ticket-type ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ticket-type li {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    padding: 4px 0;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    overflow: hidden;
}

.contact-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.contact-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
    width: 90%;
    max-width: 800px;
}

.contact-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.contact-description {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    line-height: 1.6;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Contact Information Section */
.contact-info {
    background-color: #fff;
    padding: 40px 20px;
    position: relative;
}

.contact-info::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 1px;
    background-color: #e0e0e0;
}

.contact-info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #333;
}

.contact-icon {
    font-size: 22px;
    opacity: 0.8;
    display: inline-block;
    line-height: 1;
}

.contact-text {
    color: #333;
}

/* Contact Categories Section */
.contact-categories {
    background-color: #fff;
    padding: 40px 20px;
    position: relative;
}

.contact-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 1px;
    background-color: #e0e0e0;
}

.contact-categories-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 40px;
    align-items: start;
}

.contact-category {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-category:nth-child(1),
.contact-category:nth-child(2) {
    grid-column: 1;
}

.contact-category:nth-child(2) {
    margin-top: 40px;
}

.contact-category:nth-child(3) {
    grid-column: 2;
    grid-row: 1 / 3;
}

.contact-category-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #333;
    margin: 0;
}

.contact-category-description {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-category-email,
.contact-category-phone {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #0066cc;
    text-decoration: none;
    display: inline-block;
}

.contact-category-email:hover,
.contact-category-phone:hover {
    text-decoration: underline;
}

.contact-category-or {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666;
    display: inline-block;
    margin: 0 5px;
}

/* History Content Section */
.history-content {
    background-color: #fff;
    padding: 60px 40px;
}

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

.history-text {
    margin-bottom: 50px;
}

.history-intro-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.4;
}

.history-intro-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

.history-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.history-image-item {
    display: flex;
    flex-direction: column;
    gap: 7.5px;
}

.history-image-item img {
    width: 50%;
    height: auto;
    display: block;
    object-fit: cover;
    margin: 0 auto;
}

.history-image-caption {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* History Section Alt (A New Castle) */
.history-section-alt {
    background-color: #f5f5f5;
    padding: 60px 40px;
}

.history-section-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.history-section-alt .history-images {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.history-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.history-content .history-section-title {
    text-align: center;
    margin-bottom: 30px;
}

/* Privacy Policy Section */
.privacy-section {
    background-color: #fff;
    padding: 60px 40px;
}

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

.privacy-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #333;
    margin-bottom: 30px;
}

.privacy-heading {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #333;
    margin-top: 40px;
    margin-bottom: 20px;
}

.privacy-subheading {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.privacy-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

.privacy-list {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-list .privacy-text {
    margin-bottom: 10px;
}

.privacy-link {
    color: #0066cc;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .nav-desktop {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-mobile,
    .nav-mobile-overlay {
        display: block;
    }

    .slider {
        padding-bottom: 85%; /* Increased height on mobile for better visibility */
    }

    .slider-controls {
        bottom: 15px;
    }

    .slider-controls label {
        width: 10px;
        height: 10px;
    }

    .slide-logos {
        padding-top: 25px;
        padding-bottom: 50px;
        gap: 20px;
        max-height: 100%;
        box-sizing: border-box;
    }

    .slide-logos .logo-top {
        width: min(350px, 65vw);
        max-height: min(140px, 16vh);
        height: auto;
    }

    .slide-logos .logo-bottom {
        width: min(280px, 50vw);
        max-height: min(110px, 11vh);
        height: auto;
    }

    .slide-button {
        padding: 14px 24px;
        font-size: 14px;
        white-space: normal;
        text-align: center;
        max-width: 75vw;
        min-width: 180px;
        width: auto;
        z-index: 10;
        flex-shrink: 0;
    }

    .slide-logos > .logo-bottom + .slide-button {
        margin-top: 15px;
    }

    .button-arrow {
        font-size: 16px;
    }

    .info-section {
        padding: 40px 20px;
    }

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

    .info-left h2 {
        font-size: 28px;
    }

    .info-right {
        gap: 30px;
    }
}

/* Tours Content Section */
.tours-content-section {
    background-color: #f5f5f5;
    padding: 60px 40px;
}

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

.tours-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.tours-block {
    background-color: #fff;
    padding: 30px;
    border-radius: 4px;
}

.tours-block-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.tours-block-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-button {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #333;
    background-color: #e3f2fd;
    color: #333;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.read-more-button:hover {
    background-color: #333;
    color: #fff;
}

/* Responsive styles for tours section */
@media (max-width: 768px) {
    .tours-blocks {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tours-content-section {
        padding: 40px 20px;
    }
}

/* Ticket Prices Section */
.ticket-prices-section {
    background-color: #fff;
    padding: 60px 40px;
}

.ticket-prices-container {
    max-width: 1000px;
    margin: 0 auto;
}

.ticket-prices-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.ticket-prices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.ticket-category {
    background-color: #fff;
}

.ticket-category-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
}

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

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

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

.ticket-type {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #333;
    flex: 1;
}

.ticket-price {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #333;
    margin-left: 20px;
}

.book-ticket-button-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.book-ticket-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #582D40;
    color: #fff;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.2s;
}

.book-ticket-button:hover {
    background-color: #4a2535;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.book-ticket-button:active {
    transform: translateY(0);
}

/* Opening Hours and Booking Information Section */
.opening-hours-section {
    background-color: #fff;
    padding: 60px 40px;
}

.opening-hours-container {
    max-width: 1000px;
    margin: 0 auto;
}

.opening-hours-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #582D40;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #582D40;
}

.booking-info {
    max-width: 800px;
    margin: 0 auto;
}

.booking-info-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.booking-info-text:last-child {
    margin-bottom: 0;
}

/* Responsive styles for ticket prices section */
@media (max-width: 768px) {
    .ticket-prices-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ticket-prices-section {
        padding: 40px 20px;
    }

    .ticket-prices-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .ticket-category-title {
        font-size: 20px;
    }

    .book-ticket-button-container {
        margin-top: 40px;
    }

    .book-ticket-button {
        padding: 12px 30px;
        font-size: 15px;
    }

    .opening-hours-section {
        padding: 40px 20px;
    }

    .opening-hours-title {
        font-size: 20px;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .booking-info-text {
        font-size: 15px;
        margin-bottom: 18px;
    }
}

/* Important Information Section */
.important-info-section {
    background-color: #f9f9f9;
    padding: 60px 40px;
}

.important-info-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.important-info-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #000;
    margin-bottom: 25px;
}

.important-info-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive styles for important info section */
@media (max-width: 768px) {
    .important-info-section {
        padding: 40px 20px;
    }

    .important-info-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .important-info-text {
        font-size: 15px;
    }
}

/* Tour Type Selection Section */
.tour-type-selection-section {
    background-color: #EAEAEA;
    padding: 60px 40px;
}

.tour-type-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tour-type-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: white;
    padding: 40px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
    margin-top: 0;
    margin-left: 0;
    padding-top: 40px;
    padding-left: 40px;
}

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

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

.tour-type-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-type-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;
}

.tour-type-text {
    display: flex;
    flex-direction: column;
    font-size: 15px;
    gap: 15px;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    font-weight: 400;
    color: #333333;
    margin-bottom: 25px;
}

.tour-type-text p {
    margin: 0;
}

.tour-type-text p:last-child {
    margin-bottom: 0;
}

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

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

.tour-type-button {
    padding: 12px 40px;
    background-color: white;
    border: 2px solid #000000;
    border-radius: 3px;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #000000;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    align-self: flex-start;
}

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

.tour-type-button:active {
    background-color: #e8e8e8;
}

/* Responsive styles for tour type selection */
@media (max-width: 768px) {
    .tour-type-selection-section {
        padding: 40px 20px;
    }

    .tour-type-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px;
    }

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

    .tour-type-title {
        font-size: 16px;
        line-height: 36px;
    }

    .tour-type-text {
        font-size: 15px;
        width: 100%;
        padding: 0 12px;
    }

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

/* Terms and Conditions Section */
.terms-section {
    background-color: #EAEAEA;
    padding: 60px 40px;
}

.terms-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    padding: 60px 40px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.terms-main-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #000;
    margin: 0 0 40px 0;
    text-align: center;
}

.terms-content {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.terms-list {
    margin: 0;
    padding-left: 20px;
}

.terms-list > li {
    margin-bottom: 25px;
}

.terms-list > li:last-child {
    margin-bottom: 0;
}

.terms-sublist {
    margin: 10px 0 10px 20px;
    padding-left: 20px;
}

.terms-sublist li {
    margin-bottom: 8px;
}

.terms-content p {
    margin: 10px 0 0 0;
}

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

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

/* Responsive styles for terms section */
@media (max-width: 768px) {
    .terms-section {
        padding: 40px 20px;
    }

    .terms-container {
        padding: 40px 20px;
    }

    .terms-main-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .terms-content {
        font-size: 15px;
    }
}

/* Footer */
.footer {
    background-color: #582D40;
    padding: 15px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.footer-link {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

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

@media (max-width: 768px) {
    .contact-hero {
        padding-bottom: 60%;
    }

    .contact-title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .contact-description {
        font-size: 16px;
    }

    .contact-info {
        padding: 30px 20px;
    }

    .contact-info-container {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .contact-info-item {
        font-size: 14px;
    }

    .contact-categories {
        padding: 30px 20px;
    }

    .contact-categories-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-category:nth-child(1),
    .contact-category:nth-child(2),
    .contact-category:nth-child(3) {
        grid-column: 1;
        margin-top: 0;
    }

    .contact-category:nth-child(2) {
        margin-top: 0;
    }

    .contact-category-title {
        font-size: 22px;
    }

    .contact-category-description {
        font-size: 15px;
    }

    .history-content {
        padding: 40px 20px;
    }

    .history-intro-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .history-intro-text {
        font-size: 15px;
    }

    .history-images {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .history-section-alt {
        padding: 40px 20px;
    }

    .history-section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .history-section-alt .history-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .history-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 30px;
    }

    .history-content .history-section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .privacy-section {
        padding: 40px 20px;
    }

    .privacy-title {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .privacy-heading {
        font-size: 22px;
        margin-top: 35px;
        margin-bottom: 18px;
    }

    .privacy-subheading {
        font-size: 18px;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .privacy-text {
        font-size: 15px;
    }

    .footer-content {
        flex-direction: row;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-link {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding-bottom: 70%;
    }

    .contact-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .contact-description {
        font-size: 14px;
    }

    .contact-info {
        padding: 25px 15px;
    }

    .contact-info-container {
        gap: 15px;
    }

    .contact-info-item {
        font-size: 13px;
    }

    .contact-icon {
        font-size: 18px;
    }

    .contact-categories {
        padding: 25px 15px;
    }

    .contact-categories-container {
        gap: 30px;
    }

    .contact-category-title {
        font-size: 20px;
    }

    .contact-category-description {
        font-size: 14px;
    }

    .contact-category-email,
    .contact-category-phone {
        font-size: 14px;
    }

    .privacy-section {
        padding: 30px 15px;
    }

    .privacy-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .privacy-heading {
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .privacy-subheading {
        font-size: 17px;
        margin-top: 20px;
        margin-bottom: 10px;
    }

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

    .history-content {
        padding: 30px 15px;
    }

    .history-intro-title {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .history-intro-text {
        font-size: 14px;
    }

    .history-images {
        gap: 25px;
        margin-top: 25px;
    }

    .history-image-caption {
        font-size: 13px;
    }

    .history-section-alt {
        padding: 30px 15px;
    }

    .history-section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .history-section-alt .history-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .history-images-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 25px;
    }

    .history-content .history-section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .slide-logos {
        padding-top: 22px;
        padding-bottom: 50px;
        gap: 18px;
        max-height: 100%;
        box-sizing: border-box;
    }

    .slide-logos .logo-top {
        width: min(340px, 62vw);
        max-height: min(130px, 15vh);
    }

    .slide-logos .logo-bottom {
        width: min(270px, 48vw);
        max-height: min(100px, 10vh);
    }

    .slide-button {
        font-size: 13.5px;
        padding: 13px 22px;
        max-width: 72vw;
        min-width: 170px;
        flex-shrink: 0;
    }
}

@media (max-width: 600px) {
    .slider {
        padding-bottom: 90%; /* Taller on medium mobile screens */
    }
}

@media (max-width: 480px) {
    .slider {
        padding-bottom: 100%; /* Even taller on very small screens */
    }

    .slide-logos {
        padding-top: 20px;
        padding-bottom: 50px;
        gap: 15px;
        max-height: 100%;
        box-sizing: border-box;
    }

    .slide-logos .logo-top {
        width: min(320px, 70vw);
        max-height: min(120px, 14vh);
        height: auto;
    }

    .slide-logos .logo-bottom {
        width: min(250px, 55vw);
        max-height: min(90px, 9vh);
        height: auto;
    }

    .slide-button {
        padding: 12px 20px;
        font-size: 13px;
        max-width: 80vw;
        min-width: 160px;
        width: auto;
        z-index: 10;
        flex-shrink: 0;
    }

    .button-arrow {
        font-size: 15px;
    }

    .footer-link {
        font-size: 11px;
    }

    .footer-content {
        gap: 10px;
    }
}

/* 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: #1897D7;
    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: 00;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    text-decoration: none;
    padding: 15px 0;
    transition: opacity 0.3s ease;
    width: fit-content;
}

.book-tickets-btn:hover {
    opacity: 0.8;
}

.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;
    }

    .help-tooltip {
        width: 200px;
    }

    .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: #1897D7;
    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;
}
