      /* General Body Styles */
        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            background-color: #f3f4f6; /* Light gray background */
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Header Styles */
        .header {
            background-color: #ffffff;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); /* Shadow */
            padding: 1rem 0; /* py-4 */
        }

        .navbar-container {
            max-width: 1280px; /* Equivalent to container mx-auto */
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem; /* px-4 */
            padding-right: 1rem; /* px-4 */
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Logo Styles */
        .logo {
            flex-shrink: 0;
            font-size: 1.875rem; /* text-3xl */
            font-weight: 800; /* font-extrabold */
            color: #2563eb; /* text-blue-600 */
            padding: 0.5rem 0.75rem; /* p-2 */
            border-radius: 0.5rem; /* rounded-lg */
            text-decoration: none;
            transition: background-color 0.3s ease;
        }

        .logo:hover {
            background-color: #eff6ff; /* hover:bg-blue-50 */
        }

        /* Desktop Navigation Links */
        .nav-links-desktop {
            display: none; /* Hidden by default on mobile */
            align-items: center;
            gap: 2rem; /* space-x-8 */
        }

        .nav-link {
            color: #4b5563; /* text-gray-700 */
            font-weight: 500; /* font-medium */
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: #2563eb; /* hover:text-blue-600 */
        }

        /* Call Now Button */
        .call-now-button {
            background-color: #2563eb; /* bg-blue-600 */
            color: #ffffff; /* text-white */
            padding: 0.75rem 1.5rem; /* px-6 py-3 */
            border-radius: 9999px; /* rounded-full */
            font-weight: 600; /* font-semibold */
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-lg */
            transition: background-color 0.3s ease, transform 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem; /* space-x-2 */
            border: none;
            cursor: pointer;
        }

        .call-now-button:hover {
            background-color: #1d4ed8; /* hover:bg-blue-700 */
            transform: scale(1.05); /* hover:scale-105 */
        }

        .call-now-button svg {
            width: 1.25rem; /* w-5 */
            height: 1.25rem; /* h-5 */
        }

        /* Mobile Menu Button (Hamburger) */
        .mobile-menu-button {
            display: flex; /* Visible by default on mobile */
            color: #4b5563; /* text-gray-700 */
            transition: color 0.3s ease;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
        }

        .mobile-menu-button:hover,
        .mobile-menu-button:focus {
            color: #2563eb; /* hover:text-blue-600 focus:text-blue-600 */
            outline: none;
        }

        .mobile-menu-button svg {
            width: 2rem; /* w-8 */
            height: 2rem; /* h-8 */
        }

        /* Mobile Menu Content - UPDATED STYLES */
        .mobile-menu-content {
            background-color: #ffffff;
            border-top: 1px solid #e5e7eb; /* border-t border-gray-200 */
            padding-top: 1rem; /* py-4 */
            padding-bottom: 1rem; /* py-4 */
            flex-direction: column;
            align-items: center;
            gap: 1rem; /* space-y-4 */

            /* Control visibility and height for animation */
            max-height: 0; /* Starts hidden */
            opacity: 0;   /* Starts transparent */
            visibility: hidden; /* Starts invisible to screen readers/pointer events */
            overflow: hidden; /* Hide content outside max-height */

            /* Apply transitions for smooth opening/closing */
            transition: max-height 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s ease-out;

            /* Ensure it's flex for mobile layout when visible */
            display: flex; /* Changed from display: none; to enable transitions */
        }

        .mobile-menu-content.active {
            max-height: 500px; /* Adjust as needed to fully show content */
            opacity: 1; /* Fully opaque */
            visibility: visible; /* Visible */
            transition: max-height 0.3s ease-in, opacity 0.3s ease-in, visibility 0.3s ease-in; /* Different ease for opening */
        }

        .mobile-nav-link {
            display: block; /* block */
            color: #4b5563; /* text-gray-700 */
            font-weight: 500; /* font-medium */
            padding-top: 0.5rem; /* py-2 */
            padding-bottom: 0.5rem; /* py-2 */
            width: 100%; /* w-full */
            text-align: center;
            text-decoration: none;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .mobile-nav-link:hover {
            color: #2563eb; /* hover:text-blue-600 */
            background-color: #f9fafb; /* subtle hover effect */
        }

        /* Main content area for demonstration */
        .main-content {
            flex-grow: 1;
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            padding: 2rem 1rem;
            color: #374151; /* text-gray-800 */
        }

        .main-content h1 {
            font-size: 2.25rem; /* text-4xl */
            font-weight: 700; /* font-bold */
            margin-bottom: 1.5rem; /* mb-6 */
        }

        .main-content p {
            /*color: #4b5563; /* text-gray-600 */
            line-height: 1.625; /* leading-relaxed */
        }

        .info-card {
            margin-top: 2rem; /* mt-8 */
            padding: 1.5rem; /* p-6 */
            background-color: #ffffff;
            border-radius: 0.5rem; /* rounded-lg */
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); /* shadow */
        }

        .info-card h2 {
            font-size: 3.5rem; /* text-2xl */
            font-weight: 600; /* font-semibold */
            color: #374151; /* text-gray-700 */
            margin-bottom: 1rem; /* mb-4 */
        }

        .info-card ul {
            list-style: disc;
            list-style-position: inside;
            margin-top: 1rem; /* mt-4 */
            color: #4b5563; /* text-gray-600 */
            line-height: 1.5;
        }

        .info-card ul li {
            margin-bottom: 0.5rem;
        }

        /* Media Queries for Responsiveness */
        @media (min-width: 768px) { /* md breakpoint */
            .nav-links-desktop {
                display: flex; /* Show desktop links */
            }
            .mobile-menu-button {
                display: none; /* Hide hamburger on desktop */
            }
            .mobile-menu-content {
                /* On desktop, explicitly hide the mobile menu */
                display: none !important;
                max-height: 0 !important;
                opacity: 0 !important;
                visibility: hidden !important;
            }
        }

                /* --- Hero Banner Slider Section Styles --- */
        .hero-banner-slider {
            position: relative;
            width: 100%;
            height: 70vh; /* Fixed height for the slider, adjust as needed */
            overflow: hidden; /* Hide overflowing slides */
            background-color: #1a73e8; /* Fallback background */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slides-container {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.8s ease-in-out; /* Smooth slide transition */
        }

        .slide {
            flex: 0 0 100%; /* Each slide takes full width */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            text-align: center;
        }

        /* Overlay for better text readability on image backgrounds */
        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5); /* Dark overlay */
            z-index: 1;
        }

        .slide-content {
            position: relative;
            z-index: 2; /* Ensure content is above the overlay */
            max-width: 900px;
            margin: 0 1rem; /* Add horizontal margin for smaller screens */
            color: #ffffff; /* White text for contrast */
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Subtle text shadow */
        }

        .slide-title {
            font-size: 2.5rem; /* Large headline for mobile */
            font-weight: 800; /* Extra bold */
            margin-bottom: 0.75rem;
            line-height: 1.2;
            background: linear-gradient(to right, #ffffff, #add8e6); /* White to light blue gradient */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            color: #ffffff; /* Fallback color */
        }

        .slide-subtitle {
            font-size: 1rem; /* Subtitle size for mobile */
            margin-bottom: 2rem;
            line-height: 1.5;
            color: #e0e0e0; /* Slightly off-white */
        }

        .slide-cta-buttons {
            display: flex;
            flex-direction: column; /* Stack buttons on mobile */
            gap: 1rem; /* Space between buttons */
            justify-content: center;
            align-items: center;
        }

        .slide-cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            border-radius: 9999px; /* Pill shape */
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(5px); /* Trendy blur effect */
            -webkit-backdrop-filter: blur(5px);
        }

        .slide-cta-primary {
            background-color:#2563eb; /* Accent color */
            color: #fff; /* Dark text */
            border: 2px solid transparent;
        }

        .slide-cta-primary:hover {
            background-color: #fbd38d;
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .slide-cta-secondary {
            background-color: transparent;
            color: #ffffff;
            border: 2px solid rgba(255, 255, 255, 0.7); /* Semi-transparent white border */
        }

        .slide-cta-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1); /* Slight white background on hover */
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        /* Slider Navigation Arrows */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 3;
            background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent background */
            color: #ffffff;
            border: none;
            padding: 1rem 0.75rem;
            cursor: pointer;
            font-size: 1.5rem;
            border-radius: 0.5rem;
            transition: background-color 0.3s ease;
        }

        .slider-arrow:hover {
            background-color: rgba(0, 0, 0, 0.6);
        }

        .arrow-left {
            left: 1rem;
        }

        .arrow-right {
            right: 1rem;
        }

        /* Slider Pagination Dots */
        .slider-dots {
            position: absolute;
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            gap: 0.75rem;
        }

        .dot {
            width: 0.75rem;
            height: 0.75rem;
            background-color: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background-color: #ffffff;
            transform: scale(1.2);
        }

        /* Media Queries for Responsiveness */
        @media (min-width: 768px) { /* md breakpoint */
            .hero-banner-slider {
                height: 80vh; /* Taller on desktop */
            }

            .slide-title {
                font-size: 4.5rem; /* Larger headline on desktop */
            }

            .slide-subtitle {
                font-size: 1.5rem; /* Larger subtitle on desktop */
            }

            .slide-cta-buttons {
                flex-direction: row; /* Buttons side-by-side on desktop */
                gap: 1.5rem;
            }

            .slider-arrow {
                padding: 1rem 1rem; /* Larger padding for arrows */
                font-size: 2rem;
            }
        }

        @media (min-width: 1024px) { /* lg breakpoint */
            .slide-title {
                font-size: 5.5rem; /* Even larger for large screens */
            }
        }

                /* --- Key Features Section Styles --- */
        .features-section {
            padding: 4rem 1rem; /* Ample padding on all sides */
            background-color: #f3f4f6; /* Light background for contrast with cards */
            text-align: center;
        }

        .features-container {
            max-width: 1280px; /* Aligns with navbar and main content width */
            margin: 0 auto;
        }

        .features-heading {
            font-size: 2.5rem; /* Large heading */
            font-weight: 700;
            color: #1a202c; /* Dark text for readability */
            margin-bottom: 1rem;
        }

        .features-subheading {
            font-size: 1.125rem; /* Descriptive sub-text */
            color: #4a5568; /* Slightly lighter gray */
            max-width: 700px;
            margin: 0 auto 3rem auto; /* Center and add bottom margin */
            line-height: 1.6;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr; /* Single column on small screens */
            gap: 2rem; /* Spacing between cards */
            justify-content: center;
        }

        .feature-card {
            background-color: #ffffff;
            border-radius: 1.5rem; /* More rounded corners */
            padding: 2.5rem 2rem; /* Generous padding inside cards */
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* Soft, subtle shadow */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative; /* For the gradient overlay */
            overflow: hidden; /* Ensures gradient doesn't spill out */
        }

        .feature-card:hover {
            transform: translateY(-8px); /* Lift effect on hover */
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.08); /* More pronounced shadow */
        }

        /* Gradient overlay on hover */
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, #2563eb80, #8b5cf680); /* Blue to purple gradient with transparency */
            opacity: 0; /* Hidden by default */
            border-radius: 1.5rem;
            transition: opacity 0.3s ease;
            z-index: 1; /* Below content but above card background */
        }

        .feature-card:hover::before {
            opacity: 1; /* Show gradient on hover */
        }

        .feature-card-content {
            position: relative;
            z-index: 2; /* Ensure content is above the gradient overlay */
            color: #1a202c; /* Default text color */
            transition: color 0.3s ease; /* Transition text color for hover */
        }

        .feature-card:hover .feature-card-content {
            color: #ffffff; /* White text on hover for contrast with gradient */
        }


        .feature-icon-wrapper {
            width: 4rem; /* Size for icon background */
            height: 4rem;
            background-color: #edf2f7; /* Light background for icons */
            border-radius: 50%; /* Circular background */
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: background-color 0.3s ease;
        }

        .feature-card:hover .feature-icon-wrapper {
            background-color: #ffffff30; /* Semi-transparent white on hover for icon background */
        }

        .feature-icon {
            width: 2.5rem; /* Size of the SVG icon */
            height: 2.5rem;
            color: #2563eb; /* Icon color */
            transition: color 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            color: #ffffff; /* White icon on hover */
        }

        .feature-title {
            font-size: 1.5rem; /* Card title size */
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .feature-description {
            font-size: 1rem;
            line-height: 1.6;
            color: #4a5568;
        }

        .feature-card:hover .feature-description {
            color: #f7fafc; /* Lighter text on hover */
        }


        /* Media Queries for Responsiveness */
        @media (min-width: 640px) { /* sm breakpoint */
            .features-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* 2 columns on small tablets */
            }
        }

        @media (min-width: 768px) { /* md breakpoint */
            .features-heading {
                font-size: 3rem; /* Larger heading on medium screens */
            }
            .features-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 columns */
            }
        }

        @media (min-width: 1024px) { /* lg breakpoint */
            .features-grid {
                grid-template-columns: repeat(3, 1fr); /* 3 columns on larger screens */
            }
        }

        @media (min-width: 1280px) { /* xl breakpoint */
            .features-heading {
                font-size: 3.5rem; /* Even larger heading on extra large screens */
            }
        }


        /* --- Services Overview Section Styles --- */
        .services-section {
            padding: 5rem 1rem; /* Generous padding top/bottom */
            background-color: #ffffff; /* White background for this section */
            text-align: center;
        }

        .services-container {
            max-width: 1280px; /* Max width for content alignment */
            margin: 0 auto;
        }

        .section-heading {
            font-size: 2.8rem; /* Large and impactful heading */
            font-weight: 700;
            color: #1a202c; /* Dark text */
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .section-subheading {
            font-size: 1.125rem;
            color: #4a5568;
            max-width: 750px;
            margin: 0 auto 3.5rem auto; /* Center and add more bottom margin */
            line-height: 1.6;
        }

        .services-grid {
            display: grid;
            grid-template-columns: 1fr; /* Single column on mobile */
            gap: 2.5rem; /* Space between cards */
            justify-content: center;
        }

        .service-card {
            background-color: #f8faff; /* Very light blue background for cards */
            border-radius: 1.5rem; /* Significantly rounded corners */
            overflow: hidden; /* Ensures image corners are also rounded */
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08); /* Soft, larger shadow */
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .service-card:hover {
            transform: translateY(-12px) scale(1.02); /* More pronounced lift and slight scale */
            box-shadow: 0 18px 30px rgba(0, 0, 0, 0.15); /* Darker shadow on hover */
        }

        .service-image-wrapper {
            width: 100%;
            height: 250px; /* Fixed height for consistent image size */
            overflow: hidden; /* Ensures image fits within wrapper */
            border-bottom: 4px solid #2563eb; /* A bold blue line under the image */
        }

        .service-image {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures image covers the area, cropping if necessary */
            display: block; /* Removes extra space below image */
            transition: transform 0.4s ease; /* Smooth zoom on hover */
        }

        .service-card:hover .service-image {
            transform: scale(1.05); /* Slightly zoom image on hover */
        }

        .service-content {
            padding: 2.5rem 2rem; /* Ample padding for content */
        }

        .service-title {
            font-size: 1.8rem; /* Card title size */
            font-weight: 700;
            color: #2563eb; /* Blue title */
            margin-bottom: 1rem;
        }

        .service-description {
            font-size: 1rem;
            line-height: 1.7;
            color: #4a5568;
            margin-bottom: 1.8rem;
        }

        .service-cta-button {
            display: inline-block;
            background-color: #f9a825; /* Accent color for CTA */
            color: #1a202c; /* Dark text for contrast */
            padding: 0.9rem 2.2rem;
            border-radius: 9999px; /* Pill shape */
            font-weight: 600;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            border: none; /* No border for solid button */
            cursor: pointer;
        }

        .service-cta-button:hover {
            background-color: #fbd38d; /* Lighter on hover */
            transform: translateY(-3px); /* Slight lift */
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }


        /* Media Queries for Responsiveness */
        @media (min-width: 640px) { /* sm breakpoint */
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 2 columns on small tablets */
            }
        }

        @media (min-width: 768px) { /* md breakpoint */
            .section-heading {
                font-size: 3.5rem; /* Larger heading */
            }
            .services-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 columns */
            }
        }

        @media (min-width: 1024px) { /* lg breakpoint */
            .services-grid {
                grid-template-columns: repeat(3, 1fr); /* 3 columns on larger screens */
            }
            .section-heading {
                font-size: 4rem; /* Even larger heading */
            }
        }


          /* --- CTA Section Styles --- */
        .cta-section {
            padding: 6rem 1rem; /* More padding for this prominent section */
            background-color: #003366; /* Dark blue background fallback */
            color: #ffffff;
            text-align: center;
            position: relative; /* For the overlay */
            background-image: url('../images/logo/paralx.webp'); /* Placeholder image for parallax */
            background-size: cover;
            background-attachment: fixed; /* Parallax effect */
            background-position: center;
            background-repeat: no-repeat;
        }

        /* Overlay for readability over parallax image */
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6); /* Darker overlay for better contrast */
            z-index: 1;
        }

        .cta-content {
            position: relative;
            z-index: 2; /* Ensure content is above the overlay */
            max-width: 900px;
            margin: 0 auto;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); /* Text shadow for readability */
        }

        .cta-title {
            font-size: 3rem; /* Large headline */
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .cta-description {
            font-size: 1.25rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-features-list {
            list-style: none; /* Remove default list style */
            padding: 0;
            margin-bottom: 3rem;
            display: flex;
            flex-wrap: wrap; /* Allow items to wrap on smaller screens */
            justify-content: center;
            gap: 1.5rem; /* Space between list items */
        }

        .cta-features-list li {
            font-size: 1.1rem;
            font-weight: 500;
            background-color: rgba(255, 255, 255, 0.15); /* Semi-transparent background */
            padding: 0.8rem 1.5rem;
            border-radius: 9999px; /* Pill shape */
            transition: background-color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem; /* Space between icon and text */
        }

        .cta-features-list li:hover {
            background-color: rgba(255, 255, 255, 0.25);
        }

        .cta-features-list li svg { /* Icon styling for list items */
            width: 1.2em;
            height: 1.2em;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .cta-action-button {
            display: inline-block;
            background-color: #f9a825; /* Accent color for main CTA */
            color: #1a202c; /* Dark text */
            padding: 1.2rem 3rem;
            border-radius: 9999px;
            font-weight: 700;
            font-size: 1.25rem;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            border: none;
            cursor: pointer;
        }

        .cta-action-button:hover {
            background-color: #fbd38d;
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
        }

        /* Media Queries for Responsiveness */
        @media (min-width: 640px) { /* sm breakpoint */
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 2 columns on small tablets */
            }
        }

        @media (min-width: 768px) { /* md breakpoint */
            .section-heading {
                font-size: 3.5rem; /* Larger heading */
            }
            .services-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 columns */
            }
            .cta-title {
                font-size: 4.5rem; /* Larger CTA title */
            }
            .cta-features-list li {
                font-size: 1.2rem;
                padding: 1rem 2rem;
            }
        }

        @media (min-width: 1024px) { /* lg breakpoint */
            .services-grid {
                grid-template-columns: repeat(3, 1fr); /* 3 columns on larger screens */
            }
            .section-heading {
                font-size: 4rem; /* Even larger heading */
            }
            .cta-title {
                font-size: 5.5rem; /* Even larger CTA title */
            }
        }


        /* --- Services Overview Section Styles --- */
        .services-section {
            padding: 5rem 1rem; /* Generous padding top/bottom */
            background-color: #ffffff; /* White background for this section */
            text-align: center;
        }

        .services-container {
            max-width: 1280px; /* Max width for content alignment */
            margin: 0 auto;
        }

        .section-heading {
            font-size: 2.8rem; /* Large and impactful heading */
            font-weight: 700;
            color: #1a202c; /* Dark text */
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .section-subheading {
            font-size: 1.125rem;
            color: #4a5568;
            max-width: 750px;
            margin: 0 auto 3.5rem auto; /* Center and add more bottom margin */
            line-height: 1.6;
        }

        .services-grid {
            display: grid;
            grid-template-columns: 1fr; /* Single column on mobile */
            gap: 2.5rem; /* Space between cards */
            justify-content: center;
        }

        .service-card {
            background-color: #f8faff; /* Very light blue background for cards */
            border-radius: 1.5rem; /* Significantly rounded corners */
            overflow: hidden; /* Ensures image corners are also rounded */
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08); /* Soft, larger shadow */
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .service-card:hover {
            transform: translateY(-12px) scale(1.02); /* More pronounced lift and slight scale */
            box-shadow: 0 18px 30px rgba(0, 0, 0, 0.15); /* Darker shadow on hover */
        }

        .service-image-wrapper {
            width: 100%;
            height: 250px; /* Fixed height for consistent image size */
            overflow: hidden; /* Ensures image fits within wrapper */
            border-bottom: 4px solid #2563eb; /* A bold blue line under the image */
        }

        .service-image {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures image covers the area, cropping if necessary */
            display: block; /* Removes extra space below image */
            transition: transform 0.4s ease; /* Smooth zoom on hover */
        }

        .service-card:hover .service-image {
            transform: scale(1.05); /* Slightly zoom image on hover */
        }

        .service-content {
            padding: 2.5rem 2rem; /* Ample padding for content */
        }

        .service-title {
            font-size: 1.8rem; /* Card title size */
            font-weight: 700;
            color: #2563eb; /* Blue title */
            margin-bottom: 1rem;
        }

        .service-description {
            font-size: 1rem;
            line-height: 1.7;
            color: #4a5568;
            margin-bottom: 1.8rem;
        }

        .service-cta-button {
            display: inline-block;
            background-color: #f9a825; /* Accent color for CTA */
            color: #1a202c; /* Dark text for contrast */
            padding: 0.9rem 2.2rem;
            border-radius: 9999px; /* Pill shape */
            font-weight: 600;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            border: none; /* No border for solid button */
            cursor: pointer;
        }

        .service-cta-button:hover {
            background-color: #fbd38d; /* Lighter on hover */
            transform: translateY(-3px); /* Slight lift */
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        /* --- CTA Section Styles --- */
        .cta-section {
            padding: 6rem 1rem; /* More padding for this prominent section */
            background-color: #003366; /* Dark blue background fallback */
            color: #ffffff;
            text-align: center;
            position: relative; /* For the overlay */
            background-image: url('../images/logo/paralx.webp'); /* Placeholder image for parallax */
            background-size: cover;
            background-attachment: fixed; /* Parallax effect */
            background-position: center;
            background-repeat: no-repeat;
        }

        /* Overlay for readability over parallax image */
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6); /* Darker overlay for better contrast */
            z-index: 1;
        }

        .cta-content {
            position: relative;
            z-index: 2; /* Ensure content is above the overlay */
            max-width: 900px;
            margin: 0 auto;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); /* Text shadow for readability */
        }

        .cta-title {
            font-size: 3rem; /* Large headline */
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .cta-description {
            font-size: 1.25rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-features-list {
            list-style: none; /* Remove default list style */
            padding: 0;
            margin-bottom: 3rem;
            display: flex;
            flex-wrap: wrap; /* Allow items to wrap on smaller screens */
            justify-content: center;
            gap: 1.5rem; /* Space between list items */
        }

        .cta-features-list li {
            font-size: 1.1rem;
            font-weight: 500;
            background-color: rgba(255, 255, 255, 0.15); /* Semi-transparent background */
            padding: 0.8rem 1.5rem;
            border-radius: 9999px; /* Pill shape */
            transition: background-color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem; /* Space between icon and text */
        }

        .cta-features-list li:hover {
            background-color: rgba(255, 255, 255, 0.25);
        }

        .cta-features-list li svg { /* Icon styling for list items */
            width: 1.2em;
            height: 1.2em;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .cta-action-button {
            display: inline-block;
            background-color: #f9a825; /* Accent color for main CTA */
            color: #1a202c; /* Dark text */
            padding: 1.2rem 3rem;
            border-radius: 9999px;
            font-weight: 700;
            font-size: 1.25rem;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            border: none;
            cursor: pointer;
        }

        .cta-action-button:hover {
            background-color: #fbd38d;
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
        }

        /* --- Testimonials Section Styles --- */
        .testimonials-section {
            padding: 5rem 1rem;
            background-color: #f3f4f6; /* Light gray background for this section */
            text-align: center;
        }

        .testimonials-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr; /* Single column on mobile */
            gap: 3rem; /* Space between testimonials */
        }

        .testimonial-item {
            background-color: #ffffff;
            border-radius: 1.5rem;
            padding: 2.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Lighter shadow than cards */
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            text-align: center;
            overflow: hidden; /* Ensure background doesn't bleed */
        }

        .testimonial-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px; /* Height of the subtle gradient */
            background: linear-gradient(to bottom, #eff6ff, transparent); /* Light blue to transparent gradient */
            opacity: 0.7;
            z-index: 0;
            border-radius: 1.5rem 1.5rem 0 0; /* Only top rounded */
        }

        .testimonial-content {
            position: relative;
            z-index: 1; /* Ensure content is above the gradient */
        }

        .star-rating {
            color: #f9a825; /* Accent color for stars */
            margin-bottom: 1rem;
            font-size: 1.25rem;
        }

        .star-rating svg {
            width: 1.25em;
            height: 1.25em;
            vertical-align: middle;
            margin: 0 2px;
        }

        .testimonial-quote {
            font-size: 1.4rem; /* Larger quote text */
            font-style: italic;
            color: #1a202c;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            position: relative;
            padding: 0 1rem; /* Padding for quote marks if added via pseudo-elements */
        }

        .testimonial-quote::before {
            content: '“';
            font-size: 4em;
            color: #d1e0fc; /* Light blue quote mark */
            position: absolute;
            top: -20px;
            left: 0;
            opacity: 0.8;
            z-index: -1;
        }

        .testimonial-quote::after {
            content: '”';
            font-size: 4em;
            color: #d1e0fc;
            position: absolute;
            bottom: -20px;
            right: 0;
            opacity: 0.8;
            z-index: -1;
        }

        .customer-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .customer-avatar {
            width: 80px; /* Larger avatar */
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #2563eb; /* Blue border around avatar */
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .customer-name {
            font-size: 1.25rem;
            font-weight: 600;
            color: #2d3748;
        }

        .customer-title {
            font-size: 0.95rem;
            color: #718096;
        }


        /* Media Queries for Responsiveness */
        @media (min-width: 640px) { /* sm breakpoint */
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 2 columns on small tablets */
            }
            .testimonials-grid {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* 2 columns for testimonials on tablets */
            }
        }

        @media (min-width: 768px) { /* md breakpoint */
            .section-heading {
                font-size: 3.5rem; /* Larger heading */
            }
            .services-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 columns */
            }
            .cta-title {
                font-size: 4.5rem; /* Larger CTA title */
            }
            .cta-features-list li {
                font-size: 1.2rem;
                padding: 1rem 2rem;
            }
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 columns for testimonials on desktop */
            }
            .testimonial-quote {
                font-size: 1.5rem; /* Larger quote text on desktop */
            }
        }

        @media (min-width: 1024px) { /* lg breakpoint */
            .services-grid {
                grid-template-columns: repeat(3, 1fr); /* 3 columns on larger screens */
            }
            .section-heading {
                font-size: 4rem; /* Even larger heading */
            }
            .cta-title {
                font-size: 5.5rem; /* Even larger CTA title */
            }
            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr); /* 3 columns for testimonials on large screens */
            }
        }

             /* --- What We Offer Section Styles --- */
        .what-we-offer-section {
            padding: 6rem 1rem; /* Generous padding */
            background-color: #004d40; /* Dark teal background fallback */
            color: #ffffff;
            text-align: center;
            position: relative;
            background-image: url('../images/logo/general.png'); /* Placeholder image */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            /* Optional: Parallax effect */
            background-attachment: fixed;
        }

        .what-we-offer-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.55); /* Darker overlay for text readability */
            z-index: 1;
        }

        .what-we-offer-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
        }

        .what-we-offer-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: #ffffff; /* White title */
        }

        .what-we-offer-description {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            color: #e0e0e0; /* Slightly off-white for description */
        }

        .what-we-offer-call-button {
            display: inline-block;
            background-color: #f9a825; /* Accent color */
            color: #1a202c; /* Dark text */
            padding: 1.2rem 3rem;
            border-radius: 9999px;
            font-weight: 700;
            font-size: 1.25rem;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            margin: 0 auto; /* Center the button */
        }

        .what-we-offer-call-button:hover {
            background-color: #fbd38d;
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
        }

        .what-we-offer-call-button svg {
            width: 1.5em; /* Larger icon */
            height: 1.5em;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }


        /* Media Queries for Responsiveness */
        @media (min-width: 640px) { /* sm breakpoint */
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 2 columns on small tablets */
            }
            .testimonials-grid {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* 2 columns for testimonials on tablets */
            }
        }

        @media (min-width: 768px) { /* md breakpoint */
            .section-heading {
                font-size: 3.5rem; /* Larger heading */
            }
            .services-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 columns */
            }
            .cta-title {
                font-size: 4.5rem; /* Larger CTA title */
            }
            .cta-features-list li {
                font-size: 1.2rem;
                padding: 1rem 2rem;
            }
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 columns for testimonials on desktop */
            }
            .testimonial-quote {
                font-size: 1.5rem; /* Larger quote text on desktop */
            }
            .what-we-offer-title {
                font-size: 4.5rem; /* Larger on desktop */
            }
            .what-we-offer-description {
                font-size: 1.4rem;
            }
        }

        @media (min-width: 1024px) { /* lg breakpoint */
            .services-grid {
                grid-template-columns: repeat(3, 1fr); /* 3 columns on larger screens */
            }
            .section-heading {
                font-size: 4rem; /* Even larger heading */
            }
            .cta-title {
                font-size: 5.5rem; /* Even larger CTA title */
            }
            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr); /* 3 columns for testimonials on large screens */
            }
            .what-we-offer-title {
                font-size: 5.5rem; /* Even larger on large screens */
            }
        }

         /* --- Plans Section Styles --- */
        .plans-section {
            padding: 5rem 1rem;
            background-color: #ffffff; /* White background */
            text-align: center;
        }

        .plans-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .plans-grid {
            display: grid;
            grid-template-columns: 1fr; /* Single column on mobile */
            gap: 2.5rem; /* Space between plan blocks */
            justify-content: center;
            align-items: stretch; /* Ensure blocks stretch to same height */
        }

        .plan-block {
            background-color: #f8faff; /* Light background for the block */
            border: 2px solid #e0e0e0; /* Subtle border */
            border-radius: 1rem; /* Rounded corners */
            padding: 2.5rem 1.5rem;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Soft shadow */
        }

        .plan-block.highlight { /* For a featured plan */
            border-color: #2563eb; /* Blue border for highlight */
            background-color: #e6f0ff; /* Slightly darker blue background */
            transform: translateY(-10px); /* Lift featured plan */
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .plan-block:hover {
            border-color: #2563eb; /* Blue border on hover */
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .plan-name {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2563eb; /* Blue text for plan name */
            margin-bottom: 1rem;
        }

        .plan-price {
            font-size: 3.5rem; /* Large price */
            font-weight: 800;
            color: #1a202c;
            margin-bottom: 1.5rem;
            line-height: 1;
        }

        .plan-price span {
            font-size: 1rem; /* Per month text */
            font-weight: 500;
            color: #4a5568;
        }

        .plan-features {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
            text-align: left; /* Align features left within block */
            width: 100%;
            max-width: 250px; /* Limit feature list width */
        }

        .plan-features li {
            font-size: 1rem;
            color: #4a5568;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            line-height: 1.4;
        }

        .plan-features li svg {
            width: 1.2em;
            height: 1.2em;
            color: #28a745; /* Green checkmark */
            flex-shrink: 0; /* Prevent icon from shrinking */
            margin-top: 0.15em; /* Align checkmark with text */
        }

        .plan-select-button {
            display: inline-block;
            background-color: #f9a825; /* Accent color */
            color: #1a202c;
            padding: 0.9rem 2.5rem;
            border-radius: 9999px;
            font-weight: 600;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            border: none;
            cursor: pointer;
        }

        .plan-select-button:hover {
            background-color: #fbd38d;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }


        /* Media Queries for Responsiveness */
        @media (min-width: 640px) { /* sm breakpoint */
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 2 columns on small tablets */
            }
            .testimonials-grid {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* 2 columns for testimonials on tablets */
            }
            .plans-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* 2 columns for plans on tablets */
            }
        }

        @media (min-width: 768px) { /* md breakpoint */
            .section-heading {
                font-size: 3.5rem; /* Larger heading */
            }
            .services-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 columns */
            }
            .cta-title {
                font-size: 4.5rem; /* Larger CTA title */
            }
            .cta-features-list li {
                font-size: 1.2rem;
                padding: 1rem 2rem;
            }
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 columns for testimonials on desktop */
            }
            .testimonial-quote {
                font-size: 1.5rem; /* Larger quote text on desktop */
            }
            .what-we-offer-title {
                font-size: 4.5rem; /* Larger on desktop */
            }
            .what-we-offer-description {
                font-size: 1.4rem;
            }
            .plans-grid {
                grid-template-columns: repeat(3, 1fr); /* 3 columns for plans on desktop */
            }
        }

        @media (min-width: 1024px) { /* lg breakpoint */
            .services-grid {
                grid-template-columns: repeat(3, 1fr); /* 3 columns on larger screens */
            }
            .section-heading {
                font-size: 4rem; /* Even larger heading */
            }
            .cta-title {
                font-size: 5.5rem; /* Even larger CTA title */
            }
            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr); /* 3 columns for testimonials on large screens */
            }
            .what-we-offer-title {
                font-size: 5.5rem; /* Even larger on large screens */
            }
            .plans-grid {
                grid-template-columns: repeat(4, 1fr); /* 4 columns for plans on extra large screens */
            }
        }


        /* --- Disclaimer Section Styles --- */
        .disclaimer-section {
            padding: 3rem 1rem;
            background-color: #2d3748; /* Dark gray background */
            color: #e2e8f0; /* Light text */
            text-align: center;
        }

        .disclaimer-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .disclaimer-heading {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #ffffff; /* White heading */
        }

        .disclaimer-text {
            font-size: 0.9rem;
            line-height: 1.6;
            color: #a0aec0; /* Lighter gray for main text */
            margin-bottom: 1.5rem;
        }

        .disclaimer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .disclaimer-link {
            color: #90cdf4; /* Light blue link color */
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .disclaimer-link:hover {
            color: #63b3ed; /* Brighter blue on hover */
            text-decoration: underline;
        }

        /* Media Queries for Responsiveness */
        @media (min-width: 640px) { /* sm breakpoint */
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 2 columns on small tablets */
            }
            .testimonials-grid {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* 2 columns for testimonials on tablets */
            }
            .plans-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* 2 columns for plans on tablets */
            }
        }

        @media (min-width: 768px) { /* md breakpoint */
            .section-heading {
                font-size: 3.5rem; /* Larger heading */
            }
            .services-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 columns */
            }
            .cta-title {
                font-size: 4.5rem; /* Larger CTA title */
            }
            .cta-features-list li {
                font-size: 1.2rem;
                padding: 1rem 2rem;
            }
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 columns for testimonials on desktop */
            }
            .testimonial-quote {
                font-size: 1.5rem; /* Larger quote text on desktop */
            }
            .what-we-offer-title {
                font-size: 4.5rem; /* Larger on desktop */
            }
            .what-we-offer-description {
                font-size: 1.4rem;
            }
            .plans-grid {
                grid-template-columns: repeat(3, 1fr); /* 3 columns for plans on desktop */
            }
            .disclaimer-heading {
                font-size: 2.2rem;
            }
            .disclaimer-text {
                font-size: 1rem;
            }
        }

        @media (min-width: 1024px) { /* lg breakpoint */
            .services-grid {
                grid-template-columns: repeat(3, 1fr); /* 3 columns on larger screens */
            }
            .section-heading {
                font-size: 4rem; /* Even larger heading */
            }
            .cta-title {
                font-size: 5.5rem; /* Even larger CTA title */
            }
            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr); /* 3 columns for testimonials on large screens */
            }
            .what-we-offer-title {
                font-size: 5.5rem; /* Even larger on large screens */
            }
            .plans-grid {
                grid-template-columns: repeat(4, 1fr); /* 4 columns for plans on extra large screens */
            }
        }

            /* --- Contact Us Section Styles --- */
        .contact-us-section {
            padding: 5rem 1rem;
            background-color: #ffffff; /* White background */
            text-align: center;
        }

        .contact-us-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .contact-us-content {
            display: flex;
            flex-direction: column;
            gap: 3rem; /* Space between info and form */
            align-items: center;
        }

        .contact-info {
            text-align: left;
            flex: 1; /* Allows it to take available space */
            max-width: 450px; /* Limit width */
        }

        .contact-info h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #2563eb; /* Blue heading */
            margin-bottom: 1.5rem;
        }

        .contact-info p {
            font-size: 1.1rem;
            color: #4a5568;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .contact-info ul {
            list-style: none;
            padding: 0;
            margin-top: 1.5rem;
        }

        .contact-info ul li {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 1rem;
            color: #2d3748;
        }

        .contact-info ul li svg {
            width: 1.5em;
            height: 1.5em;
            color: #f9a825; /* Accent color for icons */
            flex-shrink: 0;
        }

        .contact-form-container {
            flex: 1; /* Allows it to take available space */
            max-width: 550px; /* Limit width */
            width: 100%;
        }

        .contact-form {
            background-color: #f8faff; /* Light blue background for form */
            padding: 2.5rem;
            border-radius: 1rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: left;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            font-size: 0.95rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 0.5rem;
        }

        .form-group input[type="text"],
        .form-group input[type="email"],
        .form-group textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #cbd5e0; /* Light gray border */
            border-radius: 0.5rem;
            font-size: 1rem;
            color: #4a5568;
            box-sizing: border-box; /* Include padding in width */
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2563eb; /* Blue border on focus */
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2); /* Subtle focus ring */
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical; /* Allow vertical resizing */
        }

        .submit-button {
            display: inline-block;
            background-color: #2563eb; /* Blue background */
            color: #ffffff;
            padding: 1rem 2.5rem;
            border-radius: 9999px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .submit-button:hover {
            background-color: #1d4ed8;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .map-placeholder {
            width: 100%;
            height: 300px;
            background-color: #e0e0e0;
            border-radius: 1rem;
            margin-top: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6b7280;
            font-size: 1.2rem;
            font-weight: 500;
        }


        /* Media Queries for Responsiveness */
        @media (min-width: 640px) { /* sm breakpoint */
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 2 columns on small tablets */
            }
            .testimonials-grid {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* 2 columns for testimonials on tablets */
            }
            .plans-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* 2 columns for plans on tablets */
            }
        }

        @media (min-width: 768px) { /* md breakpoint */
            .section-heading {
                font-size: 3.5rem; /* Larger heading */
            }
            .services-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 columns */
            }
            .cta-title {
                font-size: 4.5rem; /* Larger CTA title */
            }
            .cta-features-list li {
                font-size: 1.2rem;
                padding: 1rem 2rem;
            }
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 columns for testimonials on desktop */
            }
            .testimonial-quote {
                font-size: 1.5rem; /* Larger quote text on desktop */
            }
            .what-we-offer-title {
                font-size: 4.5rem; /* Larger on desktop */
            }
            .what-we-offer-description {
                font-size: 1.4rem;
            }
            .plans-grid {
                grid-template-columns: repeat(3, 1fr); /* 3 columns for plans on desktop */
            }
            .disclaimer-heading {
                font-size: 2.2rem;
            }
            .disclaimer-text {
                font-size: 1rem;
            }
            .contact-us-content {
                flex-direction: row; /* Side-by-side on desktop */
                justify-content: space-between;
                align-items: flex-start; /* Align content to top */
            }
            .contact-info,
            .contact-form-container {
                max-width: none; /* Remove max-width for flex distribution */
            }
        }

        @media (min-width: 1024px) { /* lg breakpoint */
            .services-grid {
                grid-template-columns: repeat(3, 1fr); /* 3 columns on larger screens */
            }
            .section-heading {
                font-size: 4rem; /* Even larger heading */
            }
            .cta-title {
                font-size: 5.5rem; /* Even larger CTA title */
            }
            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr); /* 3 columns for testimonials on large screens */
            }
            .what-we-offer-title {
                font-size: 5.5rem; /* Even larger on large screens */
            }
            .plans-grid {
                grid-template-columns: repeat(4, 1fr); /* 4 columns for plans on extra large screens */
            }
        }