
        :root {
            --primary: #E91E63;
            --secondary: #F8BBD9;
            --accent: #D4AF37;
            --dark: #2D2D2D;
            --bg: #FFF8FA;
            --text: #555555;
            --white: #ffffff;
            --light-pink: #FCE4EC;
            --cream: #FFF5F7;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Lato', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
        }
        h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
        a { text-decoration: none; transition: all 0.3s; }

        .layout { display: flex; min-height: 100vh; }

        .sidebar {
            width: 280px;
            background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
            padding: 2.5rem 2rem;
            position: fixed;
            height: 100vh;
            overflow-y: auto;
            box-shadow: 2px 0 20px rgba(233,30,99,0.08);
            z-index: 100;
            border-right: 1px solid rgba(233,30,99,0.1);
        }
        .sidebar-logo {
            text-align: center;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--secondary);
            margin-bottom: 2rem;
        }
        .sidebar-logo .logo-icon {
            width: 80px; height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 1rem;
        }
        .sidebar-logo .logo-icon i { font-size: 2.2rem; color: var(--white); }
        .sidebar-logo h1 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--primary);
            letter-spacing: 3px;
            margin-bottom: 0.3rem;
        }
        .sidebar-logo span {
            font-size: 0.7rem;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .sidebar-nav { display: flex; flex-direction: column; gap: 0.5rem; }
        .sidebar-nav a {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.2rem;
            border-radius: 12px;
            color: var(--text);
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s;
        }
        .sidebar-nav a i { font-size: 1.2rem; color: var(--primary); width: 24px; }
        .sidebar-nav a:hover, .sidebar-nav a.active {
            background: linear-gradient(90deg, var(--light-pink), transparent);
            color: var(--primary);
        }
        .sidebar-nav a.active { font-weight: 700; }

        .sidebar-contact {
            margin-top: 3rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, var(--light-pink), var(--cream));
            border-radius: 16px;
            text-align: center;
        }
        .sidebar-contact p {
            font-size: 0.85rem;
            color: var(--text);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        .sidebar-contact p i { color: var(--primary); }

        .main-content { flex: 1; margin-left: 280px; }

        .header {
            background: linear-gradient(135deg, var(--primary) 0%, #C2185B 100%);
            padding: 1rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header-contact {
            display: flex;
            gap: 2rem;
            color: rgba(255,255,255,0.9);
            font-size: 0.9rem;
        }
        .header-contact span { display: flex; align-items: center; gap: 0.5rem; }
        .header-contact i { color: var(--accent); }
        .header-cta {
            background: var(--accent);
            color: var(--white);
            padding: 0.7rem 1.8rem;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.9rem;
        }
        .header-cta:hover { background: var(--white); color: var(--primary); }

        .banner {
            background: linear-gradient(135deg, rgba(233,30,99,0.88) 0%, rgba(196,24,91,0.85) 100%),
                        url('https://images.pexels.com/photos/3997391/pexels-photo-3997391.jpeg?auto=compress&cs=tinysrgb&w=1400') center/cover;
            padding: 6rem 3rem;
            text-align: center;
            color: var(--white);
        }
        .banner-content { max-width: 700px; margin: 0 auto; }
        .banner-badge {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            font-size: 0.85rem;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(5px);
        }
        .banner h2 {
            font-size: 3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        .banner p { font-size: 1.1rem; opacity: 0.95; margin-bottom: 2rem; }
        .banner-btns { display: flex; gap: 1rem; justify-content: center; }
        .btn-primary { background: var(--white); color: var(--primary); padding: 1rem 2.5rem; border-radius: 30px; font-weight: 700; display: inline-flex; align-items: center; gap: 0.5rem; }
        .btn-primary:hover { background: var(--accent); color: var(--white); }
        .btn-secondary { background: transparent; color: var(--white); padding: 1rem 2.5rem; border-radius: 30px; font-weight: 700; border: 2px solid var(--white); }
        .btn-secondary:hover { background: var(--white); color: var(--primary); }

        .intro { padding: 5rem 3rem; background: var(--white); }
        .intro-container { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
        .intro-img { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(233,30,99,0.15); }
        .intro-img img { width: 100%; height: 400px; object-fit: cover; display: block; }
        .intro-content h2 { font-size: 2.2rem; color: var(--primary); margin-bottom: 1.2rem; }
        .intro-content p { font-size: 1rem; color: var(--text); margin-bottom: 1rem; line-height: 1.8; }
        .intro-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
        .intro-feature { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: 0.95rem; }
        .intro-feature i { color: var(--accent); }

        .services-preview { padding: 5rem 3rem; background: linear-gradient(180deg, var(--cream), var(--light-pink)); }
        .section-title { text-align: center; font-size: 2.5rem; color: var(--primary); margin-bottom: 0.5rem; }
        .section-subtitle { text-align: center; color: var(--text); margin-bottom: 3rem; font-size: 1.05rem; }
        .services-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
        .service-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(233,30,99,0.08);
            transition: all 0.3s;
        }
        .service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(233,30,99,0.15); }
        .service-icon {
            width: 70px; height: 70px;
            background: linear-gradient(135deg, var(--light-pink), var(--cream));
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 1.2rem;
        }
        .service-icon i { font-size: 1.8rem; color: var(--primary); }
        .service-card h3 { font-size: 1.15rem; color: var(--dark); margin-bottom: 0.5rem; }
        .service-card p { font-size: 0.9rem; color: var(--text); line-height: 1.6; }
        .service-card .price { display: block; margin-top: 1rem; font-size: 1.1rem; font-weight: 700; color: var(--primary); }

        .testimonial { padding: 5rem 3rem; background: var(--white); }
        .testimonial-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
        .testimonial-card {
            background: linear-gradient(135deg, var(--light-pink), var(--cream));
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
        }
        .testimonial-card .stars { color: var(--accent); font-size: 1.2rem; margin-bottom: 1rem; }
        .testimonial-card p { font-style: italic; color: var(--text); margin-bottom: 1rem; line-height: 1.7; }
        .testimonial-card h4 { color: var(--primary); font-size: 1rem; }

        .gallery { padding: 5rem 3rem; background: var(--cream); }
        .gallery-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
        .gallery-item {
            border-radius: 15px;
            overflow: hidden;
            height: 200px;
            background-size: cover;
            background-position: center;
            transition: all 0.3s;
            position: relative;
        }
        .gallery-item:hover { transform: scale(1.03); box-shadow: 0 15px 35px rgba(233,30,99,0.2); }
        .gallery-item-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 1.5rem;
            color: white;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .gallery-item:hover .gallery-item-overlay { opacity: 1; }
        .gallery-item-overlay h3 { margin: 0 0 0.5rem 0; font-size: 1.1rem; }

        .cta { padding: 4rem 3rem; background: linear-gradient(135deg, var(--primary), #C2185B); text-align: center; color: var(--white); }
        .cta h2 { font-size: 2.5rem; margin-bottom: 1rem; }
        .cta p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
        .cta .btn-primary { background: var(--white); color: var(--primary); }

        .footer { background: var(--dark); color: var(--white); padding: 4rem 3rem 2rem; }
        .footer-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
        .footer-col h3 { font-size: 1.2rem; color: var(--accent); margin-bottom: 1.5rem; }
        .footer-col p, .footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.75); display: block; margin-bottom: 0.8rem; line-height: 1.6; }
        .footer-col a:hover { color: var(--accent); }
        .footer-bottom { text-align: center; padding-top: 2rem; margin-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; color: rgba(255,255,255,0.5); }
        .footer-bottom a { color: rgba(255,255,255,0.5); margin: 0 0.5rem; }
        .footer-bottom a:hover { color: var(--accent); }

        @media (max-width: 1024px) {
            .sidebar { width: 240px; }
            .main-content { margin-left: 240px; }
            .intro-container { grid-template-columns: 1fr; }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .sidebar { display: none; }
            .main-content { margin-left: 0; }
            .services-grid { grid-template-columns: 1fr; }
            .testimonial-grid { grid-template-columns: 1fr; }
        }
    