:root {
            --primary-color: #0A192F;
            --secondary-color: #64FFDA;
            --accent-color: #233554;
            --text-color: #8892B0;
            --white-color: #CCD6F6;
            --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --transition-duration: 0.3s;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--primary-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: var(--secondary-color);
            transition: color var(--transition-duration);
        }

        a:hover {
            color: var(--white-color);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--primary-color);
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: bold;
            transition: transform var(--transition-duration), background-color var(--transition-duration);
        }

        .btn:hover {
            background-color: var(--white-color);
            transform: scale(1.05);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: var(--white-color);
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--primary-color);
            z-index: 1000;
            padding: 20px 0;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--secondary-color);
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 20px;
        }

        .nav-links a {
            color: var(--white-color);
            font-weight: 500;
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .burger-menu span {
            width: 25px;
            height: 3px;
            background-color: var(--secondary-color);
            transition: transform var(--transition-duration);
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--primary-color);
                text-align: center;
                padding: 20px 0;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links a {
                padding: 10px 0;
            }

            .burger-menu {
                display: flex;
            }
        }

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: url('../img/08.webp') no-repeat center center/cover;
            position: relative;
            z-index: 1;
            padding-top: 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: -1;
        }

        .hero-content {
            color: var(--white-color);
            animation: fadeIn 1s ease-in-out;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 40px;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        section {
            padding: 80px 0;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s ease-in-out, transform 1s ease-in-out;
        }

        section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .about {
            background-color: var(--accent-color);
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            align-items: center;
        }

        .about-text h3 {
            font-size: 2rem;
            color: var(--white-color);
            margin-bottom: 20px;
        }

        .about-text p {
            margin-bottom: 20px;
        }

        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }

        @media (max-width: 768px) {
            .about-grid {
                grid-template-columns: 1fr;
            }
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .product-card {
            background-color: var(--accent-color);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            transition: transform var(--transition-duration);
        }

        .product-card:hover {
            transform: translateY(-10px);
        }

        .product-card h3 {
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .product-card p {
            margin-bottom: 20px;
        }

        @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: 1fr;
            }
        }

        .prices-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .price-card {
            background-color: var(--accent-color);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            border: 2px solid transparent;
            transition: border-color var(--transition-duration);
        }

        .price-card.featured {
            border-color: var(--secondary-color);
        }

        .price-card h3 {
            color: var(--white-color);
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .price-card .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
        }

        .price-card li {
            margin-bottom: 10px;
        }

        @media (max-width: 768px) {
            .prices-grid {
                grid-template-columns: 1fr;
            }
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 5px;
            transition: transform var(--transition-duration);
        }

        .gallery-item img:hover {
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .feedback-slider-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }

        .feedback-slider {
            display: flex;
            transition: transform var(--transition-duration) ease-in-out;
        }

        .feedback-card {
            min-width: 100%;
            text-align: center;
            padding: 40px;
            background-color: var(--accent-color);
            border-radius: 10px;
        }

        .feedback-card p {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .feedback-card span {
            font-weight: bold;
            color: var(--white-color);
        }

        .faq-item {
            background-color: var(--accent-color);
            margin-bottom: 15px;
            border-radius: 5px;
        }

        .faq-question {
            padding: 20px;
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--white-color);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform var(--transition-duration);
        }

        .faq-question.active::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-duration) ease-out;
        }

        .faq-answer p {
            padding-bottom: 20px;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: var(--accent-color);
            padding: 40px;
            border-radius: 10px;
        }

        .contact-form h3 {
            color: var(--white-color);
            margin-bottom: 20px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: var(--secondary-color);
        }

        .form-group input {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--text-color);
            border-radius: 5px;
            background-color: var(--primary-color);
            color: var(--white-color);
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--secondary-color);
        }

        footer {
            background-color: var(--accent-color);
            padding: 40px 0 20px;
            text-align: center;
            color: var(--text-color);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            list-style: none;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: var(--white-color);
        }
        
        .footer-bottom {
            margin-top: 20px;
            font-size: 0.9rem;
        }

        .disclaimer {
            text-align: center;
            font-size: 0.8rem;
            padding: 20px;
            background-color: var(--primary-color);
            border-top: 1px solid var(--accent-color);
            color: var(--text-color);
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            color: var(--white-color);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 10000;
        }

        .cookie-banner p {
            flex: 1;
            margin-right: 20px;
        }

        .cookie-banner button {
            background-color: var(--secondary-color);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.4);
            animation: fadeInModal 0.5s;
        }
        
        .modal-content {
            background-color: var(--primary-color);
            margin: 15% auto;
            padding: 20px;
            border: 1px solid var(--secondary-color);
            width: 80%;
            max-width: 400px;
            border-radius: 10px;
            text-align: center;
        }
        
        .modal-content h3 {
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .close-button {
            color: var(--text-color);
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }
        
        .close-button:hover {
            color: var(--white-color);
        }
        
        @keyframes fadeInModal {
            from {opacity: 0}
            to {opacity: 1}
        }

