:root {
            --primary: #8A4FFF;
            --secondary: #FF6B9D;
            --accent: #4FD1C5;
            --bg: #F0EBF8;
            --card: #FFFFFF;
            --text: #2D3748;
            --shadow: 8px 8px 16px #d9d4e0, -8px -8px 16px #ffffff;
            --shadow-inset: inset 4px 4px 8px #d9d4e0, inset -4px -4px 8px #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, sans-serif;
        }

        body {
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            padding-top: 80px;
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--card);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            z-index: 1000;
            padding: 1rem 5%;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: var(--primary);
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background: var(--text);
            margin: 5px;
            transition: all 0.3s;
        }

        section {
            padding: 5rem 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        h1, h2, h3 {
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        h1 {
            font-size: 3rem;
            line-height: 1.2;
        }

        h2 {
            font-size: 2.5rem;
            text-align: center;
        }

        .btn {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn:hover {
            transform: translateY(-3px);
        }

        .hero {
            height: 80vh;
            display: flex;
            align-items: center;
            background: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover;
            position: relative;
        }

        .hero-content {
            background: rgba(255,255,255,0.9);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: var(--shadow);
            max-width: 600px;
        }

        .about {
            background: var(--card);
            border-radius: 20px;
            padding: 4rem;
            margin: 2rem auto;
            box-shadow: var(--shadow);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .product-card {
            background: var(--card);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
        }

        .product-card:hover {
            transform: translateY(-10px);
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .pricing-card {
            background: var(--card);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow);
        }

        .price {
            font-size: 2.5rem;
            color: var(--primary);
            margin: 1rem 0;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 3rem;
        }

        .gallery-item {
            height: 250px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .feedback-slider {
            position: relative;
            overflow: hidden;
            margin-top: 3rem;
        }

        .slides {
            display: flex;
            transition: transform 0.5s;
        }

        .slide {
            min-width: 100%;
            background: var(--card);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }

        .faq-item {
            background: var(--card);
            margin: 1rem 0;
            border-radius: 15px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }

        .contact-form {
            background: var(--card);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: var(--shadow);
            margin-top: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        input, textarea {
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 10px;
            background: var(--bg);
            box-shadow: var(--shadow-inset);
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--card);
            padding: 1.5rem;
            box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
            display: none;
            z-index: 1001;
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1002;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: var(--card);
            padding: 3rem;
            border-radius: 20px;
            text-align: center;
            max-width: 500px;
            box-shadow: var(--shadow);
        }

        footer {
            background: var(--text);
            color: white;
            padding: 3rem 5%;
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                right: -100%;
                top: 80px;
                flex-direction: column;
                background: var(--card);
                width: 100%;
                text-align: center;
                transition: right 0.5s;
                box-shadow: 0 4px 12px rgba(0,0,0,0.1);
                padding: 2rem 0;
            }

            .nav-menu.active {
                right: 0;
            }

            .burger {
                display: block;
            }

            h1 {
                font-size: 2.2rem;
            }

            h2 {
                font-size: 2rem;
            }
        }

