        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-orange: #FF8C00;
            --secondary-orange: #FFB347;
            --primary-blue: #1E3A8A;
            --secondary-blue: #3B82F6;
            --dark-blue: #1E2A5E;
            --white: #FFFFFF;
            --light-gray: #F8F9FA;
            --dark-gray: #333333;
            --success-green: #10B981;
            --shadow: 0 4px 20px rgba(0,0,0,0.1);
            --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
        }

        body {
            font-family: 'Lato', sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'League Spartan', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px 20px;
        }

        /* Header */
        header {
            background: var(--white);
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem 0;
        }

        .logo {
            display: flex;
            align-items: center;
            font-family: 'League Spartan', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-blue);
            text-decoration: none;
        }

        .logo img {
            height: 60px;
            width: auto;
            margin-right: 0.5rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark-gray);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary-orange);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-orange);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cta-button {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            color: var(--white);
            padding: 0.5rem 1.2rem;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            font-size: 0.9rem;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        .mobile-menu {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-blue);
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            color: var(--white);
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-subtitle {
            font-size: clamp(1.2rem, 2.5vw, 1.8rem);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .hero-description {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.95;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .btn-primary {
            background: var(--primary-blue);
            color: var(--white);
            padding: 1rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary:hover {
            background: var(--dark-blue);
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--primary-orange);
            padding: 1rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }

        .btn-secondary:hover {
            background: var(--light-gray);
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        .trust-indicators {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 2rem;
            opacity: 0.9;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 500;
        }

        .trust-item i {
            color: var(--success-green);
            font-size: 1.2rem;
        }

        /* Benefits Section */
        .benefits {
            padding: 50px 0; /* Reduced padding */
            background: var(--light-gray);
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem; /* Reduced margin */
        }

        .section-header h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--dark-gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .benefit-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../../images/house-and-keys.jpeg') center/cover;
            opacity: 0.05;
            transition: opacity 0.3s ease;
        }

        .benefit-card:hover::before {
            opacity: 0.1;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--white);
            position: relative;
            z-index: 2;
        }

        .benefit-card h3 {
            font-size: 1.5rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .benefit-card p {
            color: var(--dark-gray);
            line-height: 1.8;
            position: relative;
            z-index: 2;
        }

        /* Situations Section */
        .situations {
            padding: 50px 0; /* Reduced padding */
            background: var(--white);
            background-image: url('../../images/website-clicks.jpeg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
        }

        .situations::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.95);
        }

        .situations .container {
            position: relative;
            z-index: 2;
        }

        .situations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .situation-card {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--primary-orange);
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }

        .situation-card:hover {
            transform: translateX(5px);
            box-shadow: var(--shadow-hover);
        }

        .situation-card h4 {
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.8rem; /* Increased gap for larger icons */
        }

        .situation-card i {
            color: var(--primary-orange);
            font-size: 1.8rem; /* Increased icon size */
        }

        /* Process Section */
        .process {
            padding: 50px 0; /* Reduced padding */
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: var(--white);
            background-image: url('../../images/couple-in-kitchen.jpeg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
        }

        .process::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(30, 42, 94, 0.9));
        }

        .process .container {
            position: relative;
            z-index: 2;
        }

        .process .section-header h2 {
            color: var(--white);
        }

        .process .section-header p {
            color: rgba(255, 255, 255, 0.9);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .step {
            text-align: center;
            position: relative;
        }

        /* Removed step-number and replaced with step-icon for Font Awesome */
        .step-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem; /* Increased icon size */
            color: var(--white);
            margin: 0 auto 1rem;
            position: relative;
            z-index: 2;
        }

        .step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 30px;
            left: calc(50% + 30px);
            right: calc(-50% + 30px);
            height: 2px;
            background: var(--secondary-orange);
            z-index: 1;
        }

        .step h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--white);
        }

        .step p {
            opacity: 0.9;
            color: var(--white);
        }

        /* Contact Section */
        .contact {
            padding: 50px 0; /* Reduced padding */
            background: var(--light-gray);
            background-image: url('../../images/open-plan-view.jpeg');
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(248, 249, 250, 0.95);
        }

        .contact .container {
            position: relative;
            z-index: 2;
            display: flex; /* Added flex for centering */
            flex-direction: column; /* Stack content vertically */
            align-items: center; /* Center horizontally */
        }

        .contact-grid {
            /* This grid is no longer needed as we removed contact-info */
            display: block; /* Overrides previous grid display */
            width: 100%; /* Ensure it takes full width */
        }

        .contact-info {
            /* This section is removed from HTML, but keeping styles for robustness */
            display: none;
        }

        .contact-cta {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            text-align: center;
            width: 100%; /* Ensure responsiveness */
            margin: 0 auto; /* Center the block itself */
        }

        .contact-cta h3 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .contact-cta p {
            margin-bottom: 1.5rem; /* Slightly reduced margin */
            color: var(--dark-gray);
        }

        .contact-buttons {
            display: flex;
            flex-direction: column;
            gap: 0.8rem; /* Slightly smaller gap between buttons */
            align-items: center; /* Center buttons within the column */
        }

        .contact-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.8rem 1.5rem; /* Smaller padding for buttons */
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            width: 280px; /* Fixed width for consistent sizing */
        }

        .contact-btn i {
            font-size: 1.2rem; /* Increased icon size for contact buttons */
        }

        .contact-btn-primary {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            color: var(--white);
        }

        .contact-btn-secondary {
            background: var(--primary-blue);
            color: var(--white);
        }

        .contact-btn-tertiary {
            background: #25D366;
            color: var(--white);
        }

        .contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        /* Footer */
        footer {
            background: var(--dark-blue);
            color: var(--white);
            padding: 3rem 0 1rem;
            text-align: center;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            color: var(--primary-orange);
            margin-bottom: 1rem;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            line-height: 1.8;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary-orange);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 2rem;
            margin-top: 2rem;
        }

        /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 20px;
            right: 20px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: var(--shadow-hover);
            z-index: 1000;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            color: white;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: block;
            }

            .hero {
                padding: 100px 0 60px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .trust-indicators {
                flex-direction: column;
                gap: 1rem;
				align-content: center;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                /* This media query specific style is no longer needed but kept for safety */
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .step:not(:last-child)::after {
                display: none;
            }

            .process-steps {
                gap: 3rem;
            }

            .whatsapp-float {
                bottom: 15px;
                right: 15px;
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }

            .contact-buttons {
                gap: 0.8rem;
            }

            .contact-btn {
                padding: 0.8rem 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 10px 15px;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero-subtitle {
                font-size: 1.3rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .benefit-card,
            .contact-info, /* Still here for safety, though contact-info is removed */
            .contact-cta {
                padding: 1.5rem;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Loading animation */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
