
    :root {
        --primary-bg-dark: #3a474d; /* Dark background from mockup */
        --primary-bg-light: #f8f8f8; /* Content card/page background */
        --accent-green: #67a99f; /* Button/highlight color */
        --accent-red: #AF5167; /* Button/highlight color */
        --text-dark: #2c3e50; /* Primary text color */
        --text-light: #ecf0f1; /* Text on dark backgrounds */
        --border-light: #e0e0e0;
        --button-hover: #58968d;
        --header-height: 60px;
    }
    @media print {
      .no-print {
        display: none !important;
      }
    }
    /* Basic Reset & Body Styling */
    body {
        font-family: 'Open Sans', sans-serif;
        margin: 0;
        padding: 0;
        background-color: var(--primary-bg-dark);
        color: var(--text-dark);
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .container {
        max-width: 600px; /* Max width for mobile-first approach, for larger screens */
        margin: 0 auto;
        background-color: var(--primary-bg-light);
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }
    .content-wrapper{
      margin:15px;
    }
    /* Header */
    header {
        background-color: var(--primary-bg-light);
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid var(--border-light);
        position: sticky;
        top: 0;
        z-index: 100;
        height: var(--header-height);
        box-sizing: border-box;
    }

    .logo {
        font-family: 'Playfair Display', serif;
        font-size: 23px;
        font-weight: 700;
        color: black;
        cursor: pointer; /* Added for clickability */
    }

    .logo img {
        height: 30px; /* Adjust as needed */
        display: block;
    }

    .nav-icon {
        font-size: 28px;
        cursor: pointer;
        color: var(--text-dark);
    }
    .nav-icon.hamburger {
        /* Example for hamburger icon, can be an SVG or font icon */
        font-size: 24px;
        line-height: 1;
    }

    /* Hero Section */
    .hero {
        background-color: var(--primary-bg-dark);
        color: var(--text-light);
        text-align: center;
        padding: 40px 20px;
        padding-bottom: 20px; /* Reduced for the image */
        position: relative;
    }
    .hero::before {
      /* Create the overlay */
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.7);
      z-index: 1;
    }

    .hero-title {
        font-family: 'Playfair Display', serif;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 2px;
        position: relative;
        z-index: 3;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
        font-weight: 550;
        position: relative;
        z-index: 3;
    }

    .hero-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        border-radius: 8px; /* Soften edges */
        margin-top: 20px;
        margin-bottom: 30px;
        display: block; /* Ensures no extra space below image */
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 3;
    }

    /* Content Sections */
    .content-section {
        padding: 20px;
        margin-bottom: 15px;
        background-color: var(--primary-bg-light);
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        margin-left: 20px;
        margin-right: 20px;
    }
    .section-trigger.bonus-section{
        background-color: white;
        color: var(--accent-green);
        font-size: 12px;
    }
    .section-trigger {
        background-color: var(--accent-green);
        color: var(--text-light);
        padding: 15px 20px;
        border: none;
        border-radius: 8px;
        font-size: 18px;
        font-weight: 600;
        width: 98%;
        text-align: left;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        transition: background-color 0.3s ease;
    }
    .register-trigger{
        background-color: var(--accent-red);
        color: var(--text-light);
        padding: 15px 20px;
        border: none;
        border-radius: 8px;
        font-size: 18px;
        font-weight: 600;
        width: 98%;
        text-align: right;
        cursor: pointer;
        display: flex;
        justify-content:center;
        align-items: center;
        margin-bottom: 15px;
        transition: background-color 0.3s ease;
      }

    .section-trigger:hover.bonus-section {
        background-color: var(--text-light);
    }
    .section-trigger:hover {
        background-color: var(--button-hover);
    }

    .section-trigger .arrow {
        font-size: 20px;
        transition: transform 0.3s ease;
    }

    .section-trigger.active .arrow {
        transform: rotate(90deg); /* Rotates to point down when active */
    }

    .section-content {
        /* Max-height and transition logic is best handled by CSS for smooth animation
           when toggling the 'expanded' class, as in the original code.
           jQuery will toggle the class. */
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-out, padding 0.5s ease-out;
        padding: 0 20px; /* Adjust padding for closed state */
    }

    .section-content.expanded {
        max-height: 3000px; /* A sufficiently large value to allow content to expand */
        padding: 20px; /* Padding for open state */
    }

    /* Specific content styles */
    .section-content h3 {
        font-size: 22px;
        color: var(--accent-green);
        margin-top: 0;
        margin-bottom: 10px;
    }
    .section-content p, .section-content ul, .section-content li {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .section-content ul {
        list-style-type: none;
        padding-left: 0px;
    }
    .section-content strong {
        font-weight: 600;
    }
    .dropinPackage-div{
      width:100%;
      border:1px solid var(--accent-green);
      padding:5px;
      display: none;
      position: relative;

    }
     .price-td {
      text-align: right;
    }
    .section-content .price-td{
      white-space: nowrap;
    }
    .section-content table{
      min-width:  99%;
    }
    .section-content .disclaimer{
      font-size: 12px;
    }
    /* Location/Accommodation/Restaurants (Static Cards) */
    .info-card {
        background-color: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        margin-top: 50px;
        margin-bottom: 15px;
    }
    .info-card h3 {
        font-size: 20px;
        color: var(--accent-green);
        margin-top: 0;
        margin-bottom: 10px;
    }
    .info-card p {
        font-size: 15px;
        margin-bottom: 8px;
    }
    .info-card ul {
        list-style: none;
        padding: 0;
    }
    .info-card ul li {
        margin-bottom: 5px;
        font-size: 15px;
    }
    .info-card a, .section-content a {
        color: var(--accent-green);
        text-decoration: none;
        font-weight: 600;
    }
    .info-card a:hover, .section-content a:hover {
        text-decoration: underline;
    }
    /* --- NEW: Menu Styles --- */
            #sideMenu {
                height: 100%;
                width: 70%; /* Menu takes 70% of the container width */
                position: fixed; /* Fixed relative to the viewport/page */
                z-index: 150;
                top: 0;
                right: 0; /* Position the menu on the right side */
                background-color: var(--primary-bg-dark);
                overflow-x: hidden;
                transition: transform 0.3s ease;
                transform: translateX(100%); /* Initially hide off-screen */
                padding-top: var(--header-height);
                box-shadow: -5px 0 15px rgba(0,0,0,0.3);
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            #sideMenu.open {
                transform: translateX(0); /* Slide in */
            }

            #menuLinks {
                list-style: none;
                padding: 0;
                width: 100%;
                text-align: center;
                margin-top: 20px;
            }

            #menuLinks li {
                padding: 15px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            #menuLinks li:last-child {
                border-bottom: none;
            }

            #menuLinks a {
                color: var(--text-light);
                text-decoration: none;
                font-size: 18px;
                font-weight: 600;
                transition: color 0.2s;
                display: block;
            }

            #menuLinks a:hover {
                color: var(--accent-green);
            }
            /* --- End Menu Styles --- */
    /* Back to Top Button */
    #backToTopBtn {
        display: none; /* Hidden by default */
        position: fixed; /* Fixed position */
        bottom: 20px; /* Place at the bottom */
        right: 20px; /* Place at the right */
        z-index: 99; /* Make sure it's above other things */
        border: none; /* Remove borders */
        outline: none; /* Remove outline */
        background-color: var(--accent-green); /* Set a background color */
        color: white; /* Text color */
        cursor: pointer; /* Add a mouse pointer on hover */
        padding: 15px; /* Some padding */
        border-radius: 50%; /* Rounded edges */
        font-size: 18px; /* Increase font size */
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        transition: background-color 0.3s, transform 0.3s;
    }

    #backToTopBtn:hover {
        background-color: var(--button-hover);
        transform: translateY(-3px);
    }

    /* Footer */
    footer {
        background-color: var(--primary-bg-dark);
        color: var(--text-light);
        text-align: center;
        padding: 30px 20px;
        margin-top: 30px;
        font-size: 14px;
    }

    /* Utility classes for spacing */
    //.mb-15 { margin: 5px; }
    .mb-20 { margin-bottom: 20px; }
    .mb-30 { margin-bottom: 30px; }
    .mt-40 { margin-top: 40px; }


    /* 1. Define the Keyframes for the Ken Burns Animation */
@keyframes kenburns {
    /* Start state: No scale, slight move to the left */
    0% {
        transform: scale(2.5) translate(0%, 0%);
    }
    /* End state: Zoom in 15% and pan slightly to the right/down */
    100% {
        transform: scale(1.00) translate(-10%, -6%);
    }
}

/* 2. Style the Container */
.hero-image-container {
    /* This must be set to prevent the zoomed part of the image from showing outside the element */
    overflow: hidden;
    /* Set a fixed height for the container, adjust as necessary */
    height: 310px;
    width: 100%;
    max-width: 300px;
    border-radius: 8px; /* Soften edges */
    position: relative; /* For proper positioning of content/text */

    margin-left: auto;
    margin-right: auto;
    z-index: 4;
}

/* 3. Apply the Animation to the Image Inside the Container */
.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container without distortion */

    /* Apply the animation */
    /* 30s is the duration, ease-in-out for smooth start/stop, infinite, and alternate to play the animation backward */
    animation: kenburns 30s ease-in-out 5 alternate;

    /* Optimization for smooth animation */
    will-change: transform;
}
