:root {
            --bg-dark: #1a1d24;
            --text-light: #e8e6e3;
            --text-muted: #a8a8a8;
            --accent-blue: #4a6fa5;
            --accent-teal: #4a8c7a;
            --card-bg: #252a32;
            --border-color: #3a3f47;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, sans-serif;
        }
        
        body {background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;}
        
        main {
            max-width: 800px;
            margin: 0 auto;
            background: var(--card-bg);
            padding: 3rem;
            border-radius: 10px;
            border: 1px solid var(--border-color);
        }
        
        h1, h2, h3 {
            margin-bottom: 1.5rem;
            color: var(--text-light);
        }
        
        h1 {
            font-size: 2.5rem;
            color: var(--accent-teal);
            margin-bottom: 2rem;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 1rem;
        }
        
        h2 {
            font-size: 1.8rem;
            color: var(--accent-blue);
            margin-top: 2rem;
        }
        
        h3 {
            font-size: 1.3rem;
            margin-top: 1.5rem;
        }
        
        p {
            margin-bottom: 1rem;
        }
        
        ul {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        
        li {
            margin-bottom: 0.5rem;
        }
        
        .last-updated {
            font-style: italic;
            color: var(--text-muted);
            margin-bottom: 2rem;
        }
        
        @media (max-width: 768px) {
            body {}
            
            main {
                padding: 2rem 1.5rem;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
        }
:root {
            --bg-dark: #1a1d24;
            --text-light: #e8e6e3;
            --text-muted: #a8a8a8;
            --accent-blue: #4a6fa5;
            --accent-teal: #4a8c7a;
            --card-bg: #252a32;
            --border-color: #3a3f47;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, sans-serif;
        }
        
        body {background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;}
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(26, 29, 36, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 2rem;
            border-bottom: 1px solid var(--border-color);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-teal);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        .nav-menu a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: var(--accent-teal);
        }
        
        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 4px;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--text-light);
            transition: all 0.3s;
        }
        
        /* Sections */
        section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        h1, h2, h3 {
            margin-bottom: 1.5rem;
            color: var(--text-light);
        }
        
        h1 {
            font-size: 3rem;
            background: linear-gradient(45deg, var(--accent-teal), var(--accent-blue));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        h2 {
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-teal), var(--accent-blue));
        }
        
        /* Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                        url('https://images.unsplash.com/photo-1758012228738-4f2b6e91ad04?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: var(--text-muted);
        }
        
        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: linear-gradient(45deg, var(--accent-teal), var(--accent-blue));
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        /* About */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        .about-text {
            font-size: 1.1rem;
        }
        
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Products */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .product-card {
            background: var(--card-bg);
            border-radius: 10px;
            padding: 2rem;
            transition: transform 0.3s;
            border: 1px solid var(--border-color);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .product-card h3 {
            color: var(--accent-teal);
            margin-bottom: 1rem;
        }
        
        /* Prices */
        .prices-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .price-card {
            background: var(--card-bg);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            border: 1px solid var(--border-color);
            position: relative;
        }
        
        .price-card.featured {
            border: 2px solid var(--accent-teal);
            transform: scale(1.05);
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-teal);
            margin: 1rem 0;
        }
        
        .price-period {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 3rem;
        }
        
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            height: 200px;
            position: relative;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Feedback */
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 3rem auto 0;
            overflow: hidden;
        }
        
        .slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .slide {
            min-width: 100%;
            background: var(--card-bg);
            border-radius: 10px;
            padding: 2rem;
            border: 1px solid var(--border-color);
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-top: 1rem;
        }
        
        .client-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 1rem;
        }
        
        /* FAQ */
        .faq-container {
            max-width: 800px;
            margin: 3rem auto 0;
        }
        
        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 1rem;
            background: var(--card-bg);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            padding: 0 1rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }
        
        .faq-item.active .faq-answer {
            padding: 1rem;
            max-height: 500px;
        }
        
        /* Contact */
        .contact-form {
            max-width: 600px;
            margin: 3rem auto 0;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-light);
        }
        
        /* Disclaimer */
        .disclaimer {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-align: center;
            padding: 2rem;
            border-top: 1px solid var(--border-color);
            margin-top: 3rem;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--card-bg);
            padding: 1rem 2rem;
            border-top: 1px solid var(--border-color);
            display: none;
            z-index: 1001;
        }
        
        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        /* Footer */
        footer {
            background: var(--card-bg);
            padding: 3rem 2rem;
            border-top: 1px solid var(--border-color);
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .footer-links a {
            display: block;
            color: var(--text-muted);
            text-decoration: none;
            margin-bottom: 0.5rem;
        }
        
        .footer-links a:hover {
            color: var(--accent-teal);
        }
        
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 1002;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 10px;
            max-width: 500px;
            text-align: center;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .burger {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background: var(--card-bg);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0,0,0,0.05);
                padding: 2rem 0;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .price-card.featured {
                transform: scale(1);
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
        }

