@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Freeman:wght@400;700&display=swap');
        
        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            position: relative;
        }

        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('images/bg.png') no-repeat center center fixed;
            background-size: cover;
            opacity: 0.10;
            z-index: -1;
        }

        header {
            background: #fff;
            padding: 20px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid #ddd;
        }
        .logo img {
            height: 55px;
        }
        nav {
            flex: 1;
            display: flex;
            justify-content: flex-end; /* Aligns the nav items to the right */
            align-items: center; /* Centers vertically */
        }
        nav ul {
            list-style: none;
            display: flex;
            gap: 40px;
            margin: 0;
            padding: 0;
            align-items: center; /* Vertically centers the nav items */
            height: 100%; /* Ensures it takes full height of the nav */
        }

        nav ul li a:hover {
            color: #5571FF;
        }

        .btn:hover {
            background: #2E2E2E;
            color: white;
        }


        nav ul li {
            display: inline;
        }
        nav ul li a {
            text-decoration: none;
            color: black;
            font-weight: 700;
            font-size: 18px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 700;
            padding: 12px 24px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease-in-out;
        }
        .btn-login {
            background: #2E2E2E;
            color: white;
            border: none;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
            margin-right: 30px;
        }
        .btn-login i {
            margin-right: 8px;
        }
        .btn-register {
            background: transparent;
            color: #2E2E2E;
            border: 2px solid #2E2E2E;
        }
        .btn-register i {
            margin-right: 8px;
        }
        .btn-login:hover {
            background: #444;
        }
        .btn-register:hover {
            background: #2E2E2E;
            color: white;
        }

        .btn-login, .btn-register {
            min-width: 180px;
            padding: 12px 30px;
            text-align: center;
            font-size: 15px;
        }

        .hero {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 22px 100px;
            height: 85vh;
            background: rgba(240, 49, 49, 0);
        }
        .content {
            flex: 1;
            max-width: 50%;
            margin-top: -15%;
        }
        .content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #2E2E2E;
        }
        .content p {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #2E2E2E;
            line-height: 1.6;
        }
        .image-placeholder {
            width: 55%;
            height: 85%;
            background: url('images/hero-image.png') no-repeat center center;
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            border: 2px solid #2D2C2C;
            border-radius: 10px;
        }

        .services {
            text-align: center;
            padding: 50px 100px;
            background: transparent; /* Removes background */
            height: 100vh; /* Full screen height */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center; /* Centers everything */
        }

        .service-items {
            display: flex;
            justify-content: center;
            gap: 120px; /* Increased gap for better layout */
            flex-wrap: wrap;
            font-size: 25px;
            margin-top: 10px;
        }

        .service-item {
            width: 300px; /* Slightly larger for better visibility */
            text-align: center;
        }

        .service-icon {
            font-size: 80px; /* Larger icons for better proportionality */
            color: #2E2E2E;
            margin-bottom: 20px;
        }

        .roaming {
            font-family: 'Freeman', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            margin-top: 50px;
        }
        .roaming a {
            text-decoration: underline;
        }

        .footer {
            background: #1e1e1e;
            color: white;
            padding: 40px 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            text-align: center;
        }

        .footer-container {
            display: flex;
            justify-content: space-between;
            width: 100%;
            align-items: center;
            flex-wrap: wrap;
        }

        .footer-section {
            flex: 1;
            text-align: center;
        }

        .footer-section.about {
            flex: 1;
            text-align: left;
        }

        .footer-section.newsletter {
            flex: 2;
            text-align: center;
        }

        .footer-section.social,
        .footer-section.contact {
            flex: 1;
            text-align: right;
        }

        .footer-section h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 15px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .footer-section p {
            font-size: 14px;
            color: #ccc;
        }

        .newsletter-input {
            display: flex;
            align-items: center;
            background: #333;
            padding: 12px;
            border-radius: 6px;
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-input input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 12px;
            color: white;
            outline: none;
            font-size: 14px;
        }

        .newsletter-input button {
            background: #5571FF;
            color: white;
            border: none;
            padding: 12px 20px;
            cursor: pointer;
            border-radius: 6px;
            font-weight: 700;
        }

        .newsletter-input button:hover {
            background: #445acc;
        }

        .social-icons {
            display: flex;
            justify-content: flex-end;
            gap: 15px;
        }

        .social-icons a {
            color: white;
            font-size: 20px;
            transition: color 0.3s ease;
        }

        .social-icons a:hover {
            color: #5571FF;
        }

        .contact p {
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        .contact i {
            margin-right: 10px;
        }

        .sub-title {
            margin-top: -15px;
            margin-bottom: 60px;
            line-height: 25px;
            font-size: 20px;
        }
        .description {
            font-size: 20px;
            line-height: 25px;
            color: #2E2E2E;
        }

        @media screen and (max-width: 1366px) {
            .content h1 {
                font-size: 2.2rem; /* Slightly smaller heading */
                margin-top: 150px;
            }

            .content p {
                font-size: 0.9rem; /* Smaller "Rent your ideal..." text */
            }

            .btn-login, 
            .btn-register {
                min-width: 140px; /* Reduce button width */
                padding: 8px 20px; /* Adjust padding */
                font-size: 13px; /* Scale down button text */
                margin-bottom: 8px; /* Reduce margin between buttons */
            }

            .roaming {
                font-size: 20px; /* Make "Just Roaming Around" text smaller */
            }
        }

        @media screen and (min-width: 801px) {
            .hamburger {
                display: none !important;
            }

            nav {
                display: flex !important; /* Ensure the nav bar is always visible */
            }
        }

        @media screen and (max-width: 800px) {
            /* Position the hamburger menu at the right */
            .hamburger {
                display: block;
                font-size: 24px;
                cursor: pointer;
                background: none;
                border: none;
                color: #2E2E2E;
                padding: 10px 15px;
                position: absolute;
                top: 20px;
                right: 20px; /* Moves the hamburger to the right */
            }

            /* Hide the normal nav by default */
            nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 60px;
                right: 0;
                background: #fff;
                width: 200px;
                border-radius: 5px;
                box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
                text-align: right;
                padding: 10px;
                z-index: 999;
            }

            nav.show {
                display: flex; /* Ensure nav is visible when toggled */
            }

            nav ul {
                display: flex;
                flex-direction: column;
                width: 100%;
            }

            nav ul li {
                padding: 10px 15px;
            }

            nav ul li a {
                font-size: 16px;
            }

            /* Hide V-Rent button inside the menu on mobile */
            .btn {
                display: none;
            }

            /* Hide hero image placeholder */
            .image-placeholder {
                display: none;
            }

            /* Reduce font size for "With the right space" */
            .content h1 {
                font-size: 2rem; /* Smaller font size */
            }

            /* Hide 'Just Roaming Around' text */
            .roaming {
                display: none;
            }

            /* Hide the entire services section */
            .services {
                display: none;
            }

            /* Show login and register buttons */
            .btn-login, 
            .btn-register {
                display: inline-flex;
            }

            /* Add spacing below login and register buttons */
            .btn-login,
            .btn-register {
                margin-bottom: 10px;
            }
        }