:root {
            --primary-light: #D9C5A3;
            --primary-medium: #B49A7D;
            --primary-dark: #8B6F56;
            --primary-darkest: #3B2E24;
            --shadow-pink: rgba(217, 149, 163, 0.15);
            --text-light: #f8f5f0;
            --text-dark: #333;
            --radius: 12px;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: #fefefe;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            color: var(--primary-darkest);
            margin-bottom: 1rem;
        }
        
        h1 {
            font-size: 2.8rem;
            font-weight: 700;
        }
        
        h2 {
            font-size: 2.2rem;
            position: relative;
            display: inline-block;
            margin-bottom: 2rem;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(to right, var(--primary-medium), var(--primary-light));
            border-radius: 2px;
        }
        
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        
        a {
            text-decoration: none;
            color: var(--primary-dark);
            transition: var(--transition);
        }
        
        a:hover {
            color: var(--primary-medium);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header & Navigation */
        header {
            background-color: white;
            box-shadow: 0 4px 20px var(--shadow-pink);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo h1 {
            font-size: 1.8rem;
            margin-bottom: 0;
            color: var(--primary-darkest);
        }
        
        .logo span {
            color: var(--primary-dark);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 2rem;
        }
        
        nav ul li a {
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
            font-size: 1rem;
            position: relative;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-light);
            transition: var(--transition);
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .active {
            color: var(--primary-dark);
            font-weight: 600;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-darkest);
            cursor: pointer;
        }
        
        /* Buttons */
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-light), var(--primary-medium));
            color: var(--primary-darkest);
            padding: 0.9rem 1.8rem;
            border-radius: var(--radius);
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 5px 15px var(--shadow-pink);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px var(--shadow-pink);
            background: linear-gradient(135deg, var(--primary-medium), var(--primary-light));
        }
        
        .btn-secondary {
            background: transparent;
            border: 2px solid var(--primary-light);
            color: var(--primary-dark);
        }
        
        .btn-secondary:hover {
            background: rgba(217, 197, 163, 0.1);
        }

        .hero .btn-secondary {
            color: var(--text-light);
            border-color: rgba(255, 255, 255, 0.85);
            background: rgba(255, 255, 255, 0.08);
        }

        .hero .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.18);
        }
        
        /* Hero Section */
        .hero {
            padding: 10rem 0 6rem;
            background: linear-gradient(rgba(59, 46, 36, 0.7), rgba(139, 111, 86, 0.5)), url('assets/images/bathroom-decor3.jpg');
            background-size: cover;
            background-position: center;
            color: var(--text-light);
            text-align: center;
            margin-top: 80px;
        }
        
        .hero h1 {
            color: var(--text-light);
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease;
        }
        
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            color: rgba(255, 255, 255, 0.9);
            animation: fadeInUp 1s ease 0.2s both;
        }
        
        .hero-btns {
            animation: fadeInUp 1s ease 0.4s both;
        }
        
        /* Sections */
        .section {
            padding: 5rem 0;
        }
        
        .section-light {
            background-color: rgba(217, 197, 163, 0.05);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3.5rem;
        }
        
        .section-title h2 {
            display: inline-block;
        }
        
        .section-title h2::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Grid Layout */
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        /* Cards */
        .card {
            background-color: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 10px 30px var(--shadow-pink);
            transition: var(--transition);
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px var(--shadow-pink);
        }
        
        .card-img {
            height: 220px;
            width: 100%;
            object-fit: cover;
        }
        
        .card-content {
            padding: 1.8rem;
        }
        
        /* Services */
        .service-card {
            text-align: center;
            padding: 2rem 1.5rem;
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
        }
        
        /* Blog */
        .blog-card .card-img {
            height: 200px;
        }
        
        .blog-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: var(--primary-dark);
        }
        
        /* About */
        .about-content {
            display: flex;
            align-items: center;
            gap: 4rem;
        }
        
        .about-img {
            flex: 1;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 15px 35px var(--shadow-pink);
        }
        
        .about-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .about-text {
            flex: 1;
        }
        
        /* Contact Form */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }
        
        .contact-info {
            padding: 2rem;
            background: linear-gradient(135deg, rgba(217, 197, 163, 0.1), rgba(180, 154, 125, 0.1));
            border-radius: var(--radius);
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
        }
        
        .contact-icon {
            font-size: 1.5rem;
            color: var(--primary-dark);
            margin-right: 1.2rem;
            width: 50px;
            height: 50px;
            background-color: rgba(217, 197, 163, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-control {
            width: 100%;
            padding: 1rem;
            border: 1px solid rgba(139, 111, 86, 0.3);
            border-radius: var(--radius);
            font-family: 'Open Sans', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary-medium);
            box-shadow: 0 0 0 3px rgba(180, 154, 125, 0.2);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-darkest);
            color: var(--text-light);
            padding: 4rem 0 2rem;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }
        
        .footer-column h3 {
            color: var(--primary-light);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-column ul li a {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .footer-column ul li a:hover {
            color: var(--primary-light);
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--text-light);
        }
        
        .social-links a:hover {
            background-color: var(--primary-light);
            color: var(--primary-darkest);
        }
        
        .newsletter-form {
            margin-top: 1.5rem;
        }
        
        .newsletter-form input {
            width: 100%;
            padding: 0.8rem;
            border: none;
            border-radius: var(--radius);
            margin-bottom: 1rem;
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
        
        /* Policy Pages */
        .policy-container {
            max-width: 800px;
            margin: 100px auto 3rem;
            padding: 2rem;
            background-color: white;
            border-radius: var(--radius);
            box-shadow: 0 10px 30px var(--shadow-pink);
        }
        
        .policy-container h1 {
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .policy-container h2 {
            margin-top: 2rem;
        }
        
        .policy-container ul {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        /* Cookie Popup */
        .cookie-popup {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 900px;
            background-color: white;
            padding: 1.5rem 2rem;
            border-radius: var(--radius);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            z-index: 1001;
            display: flex;
            justify-content: space-between;
            align-items: center;
            animation: slideUp 0.5s ease;
        }
        
        .cookie-content {
            flex: 1;
            margin-right: 2rem;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }
        
        .cookie-popup.hidden {
            display: none;
        }
        
        /* Page Transitions */
        .page {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .page.active {
            display: block;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInUp {
            from { 
                opacity: 0;
                transform: translateY(30px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideUp {
            from { 
                opacity: 0;
                transform: translate(-50%, 100px);
            }
            to { 
                opacity: 1;
                transform: translate(-50%, 0);
            }
        }
        
        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Mobile Responsiveness */
        @media (max-width: 992px) {
            .contact-container, .about-content, .footer-container {
                grid-template-columns: 1fr;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            h1 {
                font-size: 2.3rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                box-shadow: 0 10px 20px var(--shadow-pink);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                z-index: 999;
            }
            
            nav ul.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            nav ul li {
                margin: 1rem 0;
            }
            
            .hero {
                padding: 8rem 0 4rem;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section {
                padding: 3rem 0;
            }
            
            .cookie-popup {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-content {
                margin-right: 0;
                margin-bottom: 1.5rem;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .grid {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .cookie-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .cookie-buttons button {
                width: 100%;
            }
        }

        .cta-offset {
            margin-left: 1rem;
        }

        .policy-top {
            margin-top: 100px;
        }

        .about-image-tall {
            height: 800px;
        }

        .grid-margin-lg {
            margin-top: 3rem;
        }

        .grid-margin-md {
            margin-top: 2rem;
        }

        .centered-block-lg {
            text-align: center;
            margin-top: 3rem;
        }

        .process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .process-step {
            text-align: center;
            max-width: 200px;
        }

        .step-badge {
            background: var(--primary-light);
            color: var(--primary-darkest);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin: 0 auto 1rem;
        }

        .btn-sm {
            padding: 0.7rem 1.5rem;
        }

        .newsletter-narrow {
            max-width: 500px;
            margin: 2rem auto;
        }

        .newsletter-input {
            width: 70%;
            margin-right: 1rem;
        }

        .contact-spacing {
            margin-top: 3rem;
        }

        .form-spacing {
            margin-top: 2rem;
        }

        .checkbox-row {
            display: flex;
            align-items: center;
        }

        .checkbox-gap {
            margin-right: 10px;
        }

        .btn-block {
            width: 100%;
        }
