* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f8f8;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #fff;
            color: #333;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 300;
            color: #333;
            text-transform: uppercase;
            letter-spacing: 4px;
        }
        
        .nav-list {
            display: flex;
            list-style: none;
        }
        
        .nav-list li {
            margin-left: 30px;
        }
        
        .nav-list a {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s;
        }
        
        .nav-list a:hover {
            color: #4a90e2;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger span {
            display: block;
            width: 25px;
            height: 2px;
            background-color: #333;
            margin: 6px 0;
            transition: all 0.3s;
        }
        
        .hero {
            padding: 180px 0 100px;
            background-color: #fff;
            text-align: center;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 42px;
            font-weight: 200;
            margin-bottom: 20px;
            color: #333;
            text-transform: uppercase;
            letter-spacing: 3px;
        }
        
        .hero p {
            font-size: 18px;
            font-weight: 300;
            margin-bottom: 40px;
            color: #666;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn {
            display: inline-block;
            padding: 14px 40px;
            background-color: #4a90e2;
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: #3a7bc8;
        }
        
        .about {
            padding: 100px 0;
            background-color: #f8f8f8;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 80px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h2 {
            font-size: 32px;
            font-weight: 200;
            margin-bottom: 30px;
            color: #333;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .about-text p {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
        }
        
        .about-image {
            flex: 1;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 4px;
        }
        
        .products {
            padding: 100px 0;
            background-color: #fff;
        }
        
        .products h2 {
            font-size: 32px;
            font-weight: 200;
            text-align: center;
            margin-bottom: 60px;
            color: #333;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .product-card {
            text-align: center;
        }
        
        .product-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            margin-bottom: 30px;
            border-radius: 4px;
        }
        
        .product-card h3 {
            font-size: 20px;
            font-weight: 400;
            margin-bottom: 15px;
            color: #333;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .product-card p {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
        }
        
        .prices {
            padding: 100px 0;
            background-color: #f8f8f8;
        }
        
        .prices h2 {
            font-size: 32px;
            font-weight: 200;
            text-align: center;
            margin-bottom: 60px;
            color: #333;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .price-card {
            background-color: #fff;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .price-card:hover {
            transform: translateY(-10px);
        }
        
        .price-card.featured {
            background-color: #4a90e2;
            color: #fff;
        }
        
        .price-card h3 {
            font-size: 18px;
            font-weight: 400;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .price-card.featured h3 {
            color: #fff;
        }
        
        .price {
            font-size: 36px;
            font-weight: 200;
            margin-bottom: 30px;
        }
        
        .price-card.featured .price {
            color: #fff;
        }
        
        .price-card ul {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }
        
        .price-card li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            font-size: 14px;
        }
        
        .price-card.featured li {
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .gallery {
            padding: 100px 0;
            background-color: #fff;
        }
        
        .gallery h2 {
            font-size: 32px;
            font-weight: 200;
            text-align: center;
            margin-bottom: 60px;
            color: #333;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-grid img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 4px;
            transition: transform 0.3s;
        }
        
        .gallery-grid img:hover {
            transform: scale(1.05);
        }
        
        .feedback {
            padding: 100px 0;
            background-color: #f8f8f8;
        }
        
        .feedback h2 {
            font-size: 32px;
            font-weight: 200;
            text-align: center;
            margin-bottom: 60px;
            color: #333;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .feedback-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }
        
        .feedback-item {
            background-color: #fff;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            display: none;
        }
        
        .feedback-item.active {
            display: block;
        }
        
        .feedback-text {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 16px;
            color: #555;
            line-height: 1.8;
        }
        
        .feedback-author {
            display: flex;
            align-items: center;
        }
        
        .feedback-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 20px;
            object-fit: cover;
        }
        
        .feedback-author h4 {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 5px;
            color: #333;
        }
        
        .feedback-author p {
            font-size: 14px;
            color: #777;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }
        
        .slider-controls button {
            background-color: #4a90e2;
            color: #fff;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            font-weight: 500;
            text-transform: uppercase;
            transition: background-color 0.3s;
        }
        
        .slider-controls button:hover {
            background-color: #3a7bc8;
        }
        
        .faq {
            padding: 100px 0;
            background-color: #fff;
        }
        
        .faq h2 {
            font-size: 32px;
            font-weight: 200;
            text-align: center;
            margin-bottom: 60px;
            color: #333;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }
        
        .faq-item h3 {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 15px;
            color: #333;
            cursor: pointer;
            position: relative;
            padding-right: 30px;
        }
        
        .faq-item h3::after {
            content: '+';
            position: absolute;
            right: 0;
            top: 0;
            font-size: 24px;
            color: #4a90e2;
        }
        
        .faq-item.active h3::after {
            content: '-';
        }
        
        .faq-item p {
            display: none;
            color: #555;
            line-height: 1.8;
        }
        
        .faq-item.active p {
            display: block;
        }
        
        .contact {
            padding: 100px 0;
            background-color: #f8f8f8;
        }
        
        .contact h2 {
            font-size: 32px;
            font-weight: 200;
            text-align: center;
            margin-bottom: 60px;
            color: #333;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .contact-form {
            background-color: #fff;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 14px;
            color: #333;
        }
        
        .form-group input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus {
            outline: none;
            border-color: #4a90e2;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .contact-info h3 {
            font-size: 24px;
            font-weight: 300;
            margin-bottom: 30px;
            color: #333;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .contact-info p {
            margin-bottom: 15px;
            color: #555;
            font-size: 16px;
        }
        
        .disclaimer {
            background-color: #333;
            color: #ccc;
            padding: 30px 0;
            text-align: center;
            font-size: 14px;
        }
        
        .footer {
            background-color: #222;
            color: #ccc;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 20px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #4a90e2;
        }
        
        .footer-contact p {
            margin-bottom: 12px;
            font-size: 14px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            font-size: 13px;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #333;
            color: #fff;
            padding: 20px 0;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-content {
            max-width: 1000px;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .cookie-content p {
            margin-right: 20px;
            font-size: 14px;
        }
        
        .cookie-content a {
            color: #4a90e2;
            text-decoration: none;
            font-weight: 500;
        }
        
        #acceptCookies {
            background-color: #4a90e2;
            color: #fff;
            border: none;
            padding: 10px 25px;
            cursor: pointer;
            font-weight: 500;
            text-transform: uppercase;
            transition: background-color 0.3s;
        }
        
        #acceptCookies:hover {
            background-color: #3a7bc8;
        }
        
        .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;
        }
        
        .popup.show {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background-color: #fff;
            padding: 40px;
            text-align: center;
            max-width: 400px;
            width: 90%;
            transform: scale(0.8);
            transition: transform 0.3s;
        }
        
        .popup.show .popup-content {
            transform: scale(1);
        }
        
        .popup-content h3 {
            font-size: 22px;
            font-weight: 400;
            margin-bottom: 20px;
            color: #333;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .popup-content p {
            margin-bottom: 25px;
            color: #555;
        }
        
        #closePopup {
            background-color: #4a90e2;
            color: #fff;
            border: none;
            padding: 12px 30px;
            cursor: pointer;
            font-weight: 500;
            text-transform: uppercase;
            transition: background-color 0.3s;
        }
        
        #closePopup:hover {
            background-color: #3a7bc8;
        }
        
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
                gap: 50px;
            }
            
            .contact-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-list {
                position: fixed;
                top: 60px;
                left: 0;
                width: 100%;
                background-color: #fff;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s;
                z-index: 999;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }
            
            .nav-list.active {
                transform: translateY(0);
            }
            
            .nav-list li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .hero {
                padding: 120px 0 80px;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .about, .products, .prices, .gallery, .feedback, .faq, .contact {
                padding: 60px 0;
            }
            
            .cookie-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .cookie-content p {
                margin-right: 0;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 26px;
            }
            
            .hero p {
                font-size: 14px;
            }
            
            .btn {
                padding: 12px 25px;
                font-size: 14px;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .gallery-grid img {
                height: 200px;
            }
        }

