* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --primary: #0a192f;
            --secondary: #64ffda;
            --light: #8892b0;
            --white: #ffffff;
            --dark: #020c1b;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            background-color: var(--white);
            color: var(--primary);
            line-height: 1.6;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--primary);
            color: var(--white);
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--secondary);
            text-decoration: none;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 2rem;
        }
        
        nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        nav ul li a:hover {
            color: var(--secondary);
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--white);
            margin: 5px 0;
            transition: 0.3s;
        }
        
        main {
            margin-top: 80px;
        }
        
        section {
            padding: 5rem 5%;
        }
        
        .hero {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            min-height: 90vh;
            background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.8)), url('../img/06.webp');
            background-size: cover;
            background-position: center;
            color: var(--white);
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }
        
        .hero p {
            font-size: 1.5rem;
            max-width: 800px;
            margin-bottom: 2rem;
        }
        
        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background-color: var(--secondary);
            color: var(--primary);
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            background-color: var(--white);
            transform: translateY(-3px);
        }
        
        .about {
            background-color: var(--white);
        }
        
        .about h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            text-align: center;
        }
        
        .about-container {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            height: 400px;
            background-image: url('../img/11.webp');
            background-size: cover;
            background-position: center;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .products {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .products h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
            text-align: center;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .product-card {
            background-color: var(--dark);
            padding: 2rem;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .product-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }
        
        .prices {
            background-color: var(--white);
        }
        
        .prices h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            text-align: center;
        }
        
        .price-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .price-card {
            border: 2px solid var(--light);
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .price-card:hover {
            border-color: var(--secondary);
            transform: translateY(-10px);
        }
        
        .price-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        
        .price-card .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--secondary);
            margin: 1rem 0;
        }
        
        .price-card ul {
            list-style: none;
            margin: 2rem 0;
        }
        
        .price-card ul li {
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--light);
        }
        
        .gallery {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .gallery h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
            text-align: center;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .feedback {
            background-color: var(--white);
        }
        
        .feedback h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            text-align: center;
        }
        
        .feedback-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .feedback-slider {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-card {
            min-width: 100%;
            padding: 2rem;
            background-color: var(--light);
            border-radius: 8px;
            color: var(--white);
            text-align: center;
        }
        
        .feedback-card p {
            font-style: italic;
            margin-bottom: 1rem;
        }
        
        .feedback-card h4 {
            font-weight: bold;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--light);
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: var(--secondary);
        }
        
        .faq {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .faq h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
            text-align: center;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 1rem;
            border-bottom: 1px solid var(--light);
        }
        
        .faq-question {
            padding: 1rem 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question h3 {
            font-size: 1.2rem;
        }
        
        .faq-icon {
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            max-height: 200px;
            padding-bottom: 1rem;
        }
        
        .contact {
            background-color: var(--white);
        }
        
        .contact h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            text-align: center;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: var(--primary);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid var(--light);
            border-radius: 4px;
            font-size: 1rem;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary);
        }
        
        .disclaimer {
            background-color: var(--dark);
            color: var(--light);
            padding: 1.5rem 5%;
            text-align: center;
            font-size: 0.9rem;
        }
        
        footer {
            background-color: var(--primary);
            color: var(--white);
            padding: 3rem 5%;
        }
        
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer-column ul li a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: var(--secondary);
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid var(--light);
            font-size: 0.9rem;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--primary);
            color: var(--white);
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 1rem;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }
        
        .btn-secondary {
            background-color: transparent;
            border: 1px solid var(--white);
            color: var(--white);
        }
        
        .btn-secondary:hover {
            background-color: var(--white);
            color: var(--primary);
        }
        
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .popup.show {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background-color: var(--white);
            padding: 2rem;
            border-radius: 8px;
            text-align: center;
            max-width: 500px;
            width: 90%;
        }
        
        .popup-content h3 {
            margin-bottom: 1rem;
            color: var(--primary);
        }
        
        .popup-close {
            margin-top: 1.5rem;
        }
        
        @media (max-width: 768px) {
            header {
                padding: 1rem 3%;
            }
            
            nav ul {
                position: fixed;
                top: 70px;
                right: 0;
                height: calc(100vh - 70px);
                width: 100%;
                background-color: var(--primary);
                flex-direction: column;
                align-items: center;
                justify-content: start;
                padding-top: 2rem;
                transform: translateX(100%);
                transition: transform 0.3s ease;
            }
            
            nav ul.show {
                transform: translateX(0);
            }
            
            nav ul li {
                margin: 1rem 0;
            }
            
            .burger {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            section {
                padding: 3rem 3%;
            }
            
            .about-container {
                flex-direction: column;
            }
            
            .footer-container {
                flex-direction: column;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 1rem;
            }
        }

