        /* Custom Internal CSS */
        :root {
            --primary-color: #007bff; /* Bootstrap Blue */
            --secondary-color: #6c757d;
            --accent-color: #17a2b8; /* Info/Cyan */
            --gradient: linear-gradient(45deg, #007bff, #17a2b8);
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #f8f9fa;
        }

        /* 1. Custom Header/Navbar Styling (The "Popup" Design) */
        .navbar-float {
            position: sticky;
            top: 1rem; /* Space from the top */
            z-index: 1030;
            margin: 0 1rem; /* Space from the left and right */
            border-radius: 1rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            background-color: white !important;
            padding: 0.5rem 1.5rem; /* Internal padding */
        }
        
        .navbar-brand {
            font-weight: 800;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }

        .nav-link {
            font-weight: 500;
            margin: 0 0.75rem;
        }

        .btn-call-us-desktop {
            display: none;
        }

        /* Desktop Layout adjustments (Nav Menu centered, Call button on the right) */
        @media (min-width: 992px) {
            .navbar-float .container-fluid {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .navbar-nav {
                flex-grow: 1;
                justify-content: center; /* Center the navigation links */
            }

            .btn-call-us-mobile {
                display: none;
            }
            
            .btn-call-us-desktop {
                display: inline-block;
            }
        }
        
        /* 2. Hero Section */
        #hero {
            background: url('img/home-section-bg.png') center center no-repeat;
            background-size: cover;
            padding-top: 10rem;
            padding-bottom: 8rem;
            color: white;
            position: relative;
        }
        #hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6); /* Dark overlay */
        }
        #hero .container {
            position: relative;
            z-index: 2;
        }

        /* 4. Features Cards (Hover Effect) */
        .feature-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            border-radius: 0.75rem;
            border: none;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 0.75rem;
        }

        /* 5. Our Services / Discounts Section */
        .discount-badge {
            background: var(--gradient);
            color: white;
            font-weight: 700;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            display: inline-block;
            margin-bottom: 1rem;
        }
        
        /* General Section Styling */
        section {
            padding: 5rem 0;
        }
        .section-title {
            font-weight: 700;
            color: #343a40;
            margin-bottom: 3rem;
        }
        
        /* 7. FAQs */
        .accordion-button:not(.collapsed) {
            color: white;
            background-color: var(--primary-color);
            box-shadow: none;
        }
        .accordion-button:focus {
            box-shadow: none;
            border-color: transparent;
        }

        /* 8. Contact Form */
        #contact {
            background-color: white;
        }
        .form-control:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.25rem rgba(23, 162, 184, 0.25);
        }

        /* Button Styling */
        .btn-primary {
            background: var(--gradient);
            border: none;
            transition: background 0.3s ease;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
        }
        .btn-primary:hover {
            opacity: 0.9;
            background: var(--gradient);
        }
