 /* --- RESET & BASE STYLES --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Quicksand', 'Segoe UI', Tahoma, sans-serif;
            color: #4a4a4a;
            line-height: 1.6;
            font-weight: 400;
        }

        /* --- VARIABLES --- */
        :root {
            --primary-pink: #ff4d6d;
            --primary-pink-hover: #ff3355;
            --light-pink-bg: #ffe8ed;
            --accent-teal: #2b7a9b;
            --text-dark: #333;
            --text-gray: #666;
            --white: #ffffff;
            --light-gray: #f9f9f9;
        }

        /* --- UTILITIES --- */
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 80px 0;
        }

        .text-center {
            text-align: center;
        }

        h2 {
            font-size: 36px;
            color: var(--text-dark);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--text-gray);
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* --- NAVIGATION --- */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            padding-bottom: 15px;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--accent-teal);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        nav {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--text-gray);
            font-size: 16px;
            transition: color 0.3s;
            font-weight: 500;
        }

        nav a:hover {
            color: var(--accent-teal);
        }

        .nav-cta {
            background-color: var(--primary-pink);
            color: white !important;
            padding: 10px 24px;
            border-radius: 25px;
            transition: background-color 0.3s;
        }

        .nav-cta:hover {
            background-color: var(--primary-pink-hover);
        }

        /* --- HAMBURGER MENU --- */
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: var(--text-dark);
        }

        /* --- HERO SECTION --- */
        .hero {
            background-color: var(--light-pink-bg);
            /* Removed fixed padding-top to allow flex centering if needed, added standard vertical padding */
            padding: 60px 0;
            position: relative;
            overflow: hidden; /* Keeps shape dividers or overflow images contained */
        }

        /* New Wrapper to handle side-by-side layout */
        .hero-wrapper {
            display: flex;
            align-items: center; /* Vertically center */
            justify-content: space-between;
            gap: 50px;
        }

        .hero-text {
            flex: 1; /* Takes up half the space */
            text-align: left; /* Left align as requested */
        }

        .hero h1 {
            font-size: 56px;
            color: var(--text-dark);
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.1;
        }

        .hero p {
            font-size: 20px;
            color: var(--text-gray);
            margin-bottom: 30px;
            max-width: 500px; /* Limits width for readability on left align */
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            justify-content: flex-start; /* Left align buttons */
        }

        .hero-image-container {
            flex: 1; /* Takes up other half */
            position: relative;
            height: 450px; /* Slightly taller for the side layout */
            border-radius: 20px; /* Fully rounded corners look better side-by-side */
            overflow: hidden;
            box-shadow: 20px 20px 0px rgba(43, 122, 155, 0.1); /* Subtle offset shadow using teal color */
            background-color: #ddd; /* Placeholder color */
        }

        .hero-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 20%;
            display: block;
        }

        .btn {
            padding: 14px 32px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 18px;
            font-weight: 700;
            transition: all 0.3s;
            display: inline-block;
            cursor: pointer;
            border: none;
            font-family: 'Quicksand', sans-serif;
        }

        .btn-primary {
            background-color: var(--primary-pink);
            color: white;
            box-shadow: 0 4px 15px rgba(255, 77, 109, 0.3);
        }

        .btn-primary:hover {
            background-color: var(--primary-pink-hover);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: white;
            color: var(--primary-pink);
            border: 2px solid transparent;
        }

        .btn-secondary:hover {
            border-color: var(--primary-pink);
            color: var(--primary-pink-hover);
        }

        /* --- ABOUT SECTION --- */
        .about {
            background-color: var(--white);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 24px;
            color: var(--accent-teal);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .about-text p {
            margin-bottom: 20px;
            font-size: 17px;
        }

        .about-image {
            flex: 1;
        }

        .about-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 10px 10px 0px var(--light-pink-bg);
            /* Fallback background if image missing */
            background-color: #eee;
            min-height: 300px;
            object-fit: cover;
        }

        /* --- SERVICES SECTION --- */
        .services {
            background-color: #f8fdff;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #eee;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            border-color: var(--primary-pink);
        }

        .service-icon {
            font-size: 40px;
            color: var(--accent-teal);
            margin-bottom: 20px;
            background: #eef9fc;
            width: 80px;
            height: 80px;
            line-height: 80px;
            border-radius: 50%;
            margin-left: auto;
            margin-right: auto;
        }

        .service-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--text-dark);
            font-weight: 700;
        }

        .price {
            display: block;
            font-weight: 700;
            color: var(--primary-pink);
            margin-top: 15px;
            font-size: 18px;
        }

        /* --- REVIEWS SECTION --- */
        .reviews {
            background-color: var(--light-pink-bg);
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .review-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }

        .review-text {
            font-style: italic;
            margin-bottom: 20px;
            color: #555;
        }

        .reviewer {
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .reviewer .avatar-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #888;
            font-size: 14px;
        }

        /* --- CONTACT SECTION --- */
        .contact {
            background-color: var(--white);
        }

        .contact-container {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 0 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 700;
            color: var(--text-dark);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px;
            border: 2px solid #eee;
            border-radius: 12px;
            font-size: 16px;
            font-family: 'Quicksand', sans-serif;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent-teal);
        }

        .submit-btn {
            width: 100%;
            border: none;
            cursor: pointer;
            font-size: 18px;
        }

        /* --- FOOTER --- */
        footer {
            background-color: #333;
            color: white;
            padding: 50px 20px;
            text-align: center;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            display: block;
        }

        .footer-links {
            margin-bottom: 30px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            margin: 0 15px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .social-icons a {
            color: white;
            font-size: 20px;
            margin: 0 10px;
            text-decoration: none;
        }

        /* --- MOBILE RESPONSIVENESS --- */
        @media (max-width: 900px) {
            .hero h1 {
                font-size: 42px;
            }
        }

        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }

            .hamburger {
                display: block;
            }

            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 20px;
                padding-top: 20px;
                border-top: 1px solid #eee;
                margin-top: 15px;
                background-color: white;
            }

            nav.active {
                display: flex;
            }

            nav a {
                display: block;
                width: 100%;
                text-align: center;
                padding: 10px 0;
            }

            /* --- HERO MOBILE ADJUSTMENTS --- */
            .hero-wrapper {
                flex-direction: column; /* Stack them back up on mobile */
                text-align: center;
                gap: 30px;
            }

            .hero-text {
                text-align: center; /* Center text on mobile */
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                margin-left: auto;
                margin-right: auto; /* Center the paragraph on mobile */
            }

            .hero-buttons {
                justify-content: center; /* Center buttons on mobile */
                flex-direction: column;
                max-width: 300px;
                margin: 0 auto;
            }

            .hero-image-container {
                width: 100%;
                height: 350px; /* Smaller height for mobile */
            }

            .about-content {
                flex-direction: column;
            }

            .section-padding {
                padding: 50px 0;
            }
        }