     /* Basic reset for the entire document */
     * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html, body {
        width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden; /* Prevent horizontal scrolling */
        font-family: 'Times New Roman', serif;
        background: url('path-to-your-background-image.jpg') no-repeat center center/cover;
        color: white;
    }

    /* Navbar styling */
    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: rgba(142, 131, 131, 0.7);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 35px 20px; /* Adjusted for better spacing */
        z-index: 1000;
    }

    /* Left and right nav links */
    .navbar ul {
        list-style: none;
        display: flex;
        gap: 20px;
    }

    .navbar ul li {
        display: inline-block;
    }

    .navbar ul li a {
        color: white;
        text-decoration: none;
        font-size: 1.1em;
        padding: 8px 12px;
        transition: background-color 0.3s, color 0.3s;
    }

    .navbar ul li a:hover {
        background-color: white;
        color: black;
        border-radius: 5px;
    }

    /* Centering the logo */
    .navbar .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .navbar .logo img {
        height: 100px;
    }

    /* Book Now button */
    .navbar .book-now {
        font-size: 1.1em;
        color: white;
        text-decoration: none;
        border: 2px solid white;
        padding: 10px 15px;
        border-radius: 5px;
        transition: background 0.3s, color 0.3s;
    }

    .navbar .book-now:hover {
        background-color: white;
        color: black;
    }

    /* Mobile menu */
    .navbar .mobile-nav {
        display: none;
        flex-direction: column;
        gap: 10px;
        background-color: rgba(142, 131, 131, 0.9);
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 20px;
    }

    .navbar .mobile-nav.active {
        display: flex;
    }

    /* Hamburger menu */
    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 3px 0;
        transition: all 0.3s ease;
    }

    /* Container for page content */
    .container {
        max-width: 1200px;
        width: 100%;
        padding: 20px;
        background-color: rgba(255, 255, 255, 0.9);
        margin: 200px auto; /* Adjusted for spacing from navbar */
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        color: black;
        text-align: center;
    }

    .side-image img {
        width: 100%;
        max-width: 500px;
        border-radius: 10px;
        display: block;
        margin: 0 auto;
    }

    .main-content h1 {
        font-size: 2.5em;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .main-content p {
        font-size: 1.2em;
        line-height: 1.6em;
        margin-bottom: 20px;
    }

    .iframe-container {
        position: relative;
        height: 1100px;
        width: 100%;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .iframe-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .navbar ul {
            display: none;
        }

        .hamburger {
            display: flex;
        }

        .navbar .mobile-nav {
            display: none;
        }

        .navbar .mobile-nav.active {
            display: flex;
        }

        .navbar .book-now {
            padding: 8px 15px;
            font-size: 1em;
            margin-top: 10px;
            margin-bottom: 10px;
            
        }

        .navbar .logo img {
            height: 40px;
        }

        .side-image img {
            max-width: 100%;
        }

        body {
            overflow-x: hidden;
        }

        
    }

    /* Footer Section */
    .footer-area-wrapper {
        background-color: #4a4646;
        padding: 40px 0;
    }

    .footer-area {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .footer-widget {
        margin-bottom: 20px;
    }

    .footer-widget ul {
        list-style: none;
        padding: 0;
    }

    .footer-widget ul li {
        display: inline-block;
        margin: 0 15px;
    }

    .footer-widget ul li a {
        text-decoration: none;
        color: #ebe9e9;
        font-weight: bold;
    }

    .footer-widget .social-icons {
        margin-top: 20px;
    }

    .footer-widget .social-icons a {
        text-decoration: none;
        margin: 0 10px;
    }

    .footer-widget .social-icons a i {
        font-size: 20px;
    }

    .footer-copyright {
        margin-top: 20px;
        color: white;
    }

    /* Book Now button */
    .navbar .book-now {
        font-size: 1.2em;
        color: white;
        text-decoration: none;
        border: 2px solid white;
        padding: 10px 20px;
        border-radius: 5px;
        transition: background 0.3s, color 0.3s;
        margin-left: -600px;
    }

    .navbar .book-now:hover {
        background-color: white;
        color: black;
    }