:root {
            --primary: #C8A2C8;
            --secondary: #F0E6EF;
            --accent: #957186;
            --text: #2D3047;
            --light: #FFFDED;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--text);
            background: linear-gradient(135deg, var(--secondary) 0%, var(--light) 100%);}
        
        main {
            max-width: 800px;
            margin: 0 auto;
            background: var(--light);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(149, 113, 134, 0.2);
        }
        
        h1 {
            color: var(--accent);
            margin-bottom: 2rem;
            text-align: center;
            font-size: 2.5rem;
        }
        
        h2 {
            color: var(--accent);
            margin: 2rem 0 1rem;
            font-size: 1.8rem;
        }
        
        h3 {
            color: var(--accent);
            margin: 1.5rem 0 0.5rem;
            font-size: 1.3rem;
        }
        
        p {
            margin-bottom: 1rem;
        }
        
        ul {
            margin-left: 2rem;
            margin-bottom: 1rem;
        }
        
        li {
            margin-bottom: 0.5rem;
        }
        
        .last-updated {
            text-align: center;
            font-style: italic;
            margin-bottom: 2rem;
            color: var(--accent);
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1rem 0;
        }
        
        th, td {
            border: 1px solid var(--primary);
            padding: 0.75rem;
            text-align: left;
        }
        
        th {
            background-color: var(--secondary);
        }
        
        @media (max-width: 768px) {
            body {}
            
            main {
                padding: 2rem;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            div {
                overflow-x: scroll;
            }
        }
:root {
            --primary: #C8A2C8;
            --secondary: #F0E6EF;
            --accent: #957186;
            --text: #2D3047;
            --light: #FFFDED;
            --shadow: rgba(149, 113, 134, 0.2);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--text);
            background: linear-gradient(135deg, var(--secondary) 0%, var(--light) 100%);
            overflow-x: hidden;}
        
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 253, 237, 0.95);
            padding: 1rem 2rem;
            z-index: 1000;
            box-shadow: 0 2px 10px var(--shadow);
            backdrop-filter: blur(10px);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--accent);
        }
        
        .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 ease;
        }
        
        .nav-menu a:hover {
            color: var(--accent);
        }
        
        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background: var(--accent);
            margin: 3px;
            transition: all 0.3s ease;
        }
        
        section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(rgba(200, 162, 200, 0.3), rgba(240, 230, 239, 0.3)), url('https://images.unsplash.com/photo-1558017487-06bf9f82613a?q=80&w=770&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--light);
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--accent);
            color: var(--light);
            text-decoration: none;
            border-radius: 30px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .btn:hover {
            background: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px var(--shadow);
        }
        
        .about {
            background: var(--light);
            border-radius: 20px;
            margin: 2rem auto;
            box-shadow: 0 10px 30px var(--shadow);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
        }
        
        .about-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 10px 25px var(--shadow);
        }
        
        .products {
            text-align: center;
        }
        
        .products h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--accent);
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .product-card {
            background: var(--light);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px var(--shadow);
            transition: transform 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .product-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }
        
        .prices {
            background: var(--secondary);
            border-radius: 20px;
            text-align: center;
        }
        
        .prices h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--accent);
        }
        
        .price-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .price-card {
            background: var(--light);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px var(--shadow);
            position: relative;
        }
        
        .price-card.featured {
            transform: scale(1.05);
            border: 2px solid var(--accent);
        }
        
        .price-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }
        
        .price {
            font-size: 2rem;
            font-weight: bold;
            color: var(--accent);
            margin: 1rem 0;
        }
        
        .gallery {
            text-align: center;
        }
        
        .gallery h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--accent);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }
        
        .gallery-item {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px var(--shadow);
            height: 250px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .gallery-item img:hover {
            transform: scale(1.1);
        }
        
        .feedback {
            background: var(--light);
            border-radius: 20px;
            text-align: center;
        }
        
        .feedback h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--accent);
        }
        
        .slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .slide {
            min-width: 100%;
            padding: 2rem;
        }
        
        .slide-content {
            background: var(--secondary);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px var(--shadow);
        }
        
        .client-info {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 1rem;
        }
        
        .client-info img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 1rem;
            object-fit: cover;
        }
        
        .slider-nav {
            margin-top: 2rem;
            display: flex;
            justify-content: center;
            gap: 1rem;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--primary);
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .slider-dot.active {
            background: var(--accent);
        }
        
        .faq {
            text-align: center;
        }
        
        .faq h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--accent);
        }
        
        .faq-item {
            margin-bottom: 1rem;
            text-align: left;
            max-width: 800px;
            margin: 0 auto 1rem;
        }
        
        .faq-question {
            background: var(--light);
            padding: 1.5rem;
            border-radius: 10px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 5px var(--shadow);
        }
        
        .faq-answer {
            padding: 1.5rem;
            background: var(--secondary);
            border-radius: 0 0 10px 10px;
            display: none;
        }
        
        .contact {
            background: var(--secondary);
            border-radius: 20px;
            text-align: center;
        }
        
        .contact h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--accent);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            text-align: left;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .form-group input {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--primary);
            border-radius: 8px;
            background: var(--light);
            font-size: 1rem;
        }
        
        .disclaimer {
            background: var(--text);
            color: var(--light);
            padding: 2rem;
            text-align: center;
            font-size: 0.9rem;
            margin-top: 4rem;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--text);
            color: var(--light);
            padding: 1.5rem;
            text-align: center;
            z-index: 1001;
            display: none;
        }
        
        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }
        
        .cookie-banner .btn {
            background: var(--accent);
            white-space: nowrap;
        }
        
        footer {
            background: var(--text);
            color: var(--light);
            padding: 3rem 2rem;
            text-align: center;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            text-align: left;
        }
        
        .footer-section h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        
        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }
        
        .footer-bottom {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
        }
        
        .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            background: var(--light);
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            z-index: 1002;
            text-align: center;
            transition: transform 0.3s ease;
            max-width: 500px;
            width: 90%;
        }
        
        .popup.active {
            transform: translate(-50%, -50%) scale(1);
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 1001;
            display: none;
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background: var(--light);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px var(--shadow);
                padding: 2rem 0;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .burger {
                display: flex;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

