@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Bebas+Neue&display=swap');

        :root {
            --primary-color: #000;
            --secondary-color: #E2E2E2;
            --accent-color: #FF5722;
            --text-color: #E2E2E2;
            --bg-color: #121212;
            --font-family-body: 'Roboto', sans-serif;
            --font-family-heading: 'Bebas Neue', sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family-body);
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            z-index: 1000;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-family-heading);
            font-size: 2rem;
            color: var(--accent-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }

        nav ul li a:hover {
            color: var(--accent-color);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger-menu div {
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            margin: 4px 0;
            transition: all 0.3s ease;
        }

        main {
            padding-top: 80px;
        }

        section {
            padding: 80px 0;
        }

        h1, h2, h3 {
            font-family: var(--font-family-heading);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-align: center;
            margin-bottom: 2rem;
            color: var(--accent-color);
        }

        p {
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: var(--accent-color);
            color: var(--primary-color);
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .btn:hover {
            background-color: var(--text-color);
            color: var(--bg-color);
        }

        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            animation: fadeInDown 1s ease-in-out;
            color: #fff;
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-in-out 0.5s;
            animation-fill-mode: both;
        }

        .video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about .container {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        
        .about .img-container {
            flex: 1;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.8s ease-out;
        }

        .about .img-container.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .about .img-container img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }

        .about .text-content {
            flex: 1;
        }

        .products .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .products .product-card {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transform: scale(0.9);
            opacity: 0;
            transition: all 0.5s ease;
        }

        .products .product-card.visible {
            transform: scale(1);
            opacity: 1;
        }

        .products .product-card h3 {
            margin-bottom: 10px;
            color: var(--accent-color);
        }

        .products .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
            margin-bottom: 15px;
        }

        .prices .price-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .prices .price-card {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.8s ease-out;
        }
        
        .prices .price-card.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .prices .price-card h3 {
            margin-bottom: 10px;
            color: var(--accent-color);
            font-size: 1.8rem;
        }

        .prices .price-card .price {
            font-family: var(--font-family-heading);
            font-size: 3rem;
            font-weight: bold;
            color: var(--accent-color);
            margin-bottom: 20px;
        }

        .prices .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
        }

        .prices .price-card ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .prices .price-card ul li::before {
            content: '✔';
            position: absolute;
            left: 0;
            color: var(--accent-color);
        }

        .gallery .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }

        .gallery .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .gallery .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery .gallery-item img:hover {
            transform: scale(1.1);
        }

        .feedback {
            position: relative;
            overflow: hidden;
        }

        .feedback-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .feedback-card {
            min-width: 100%;
            background-color: var(--secondary-color);
            color: var(--primary-color);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            margin: 0 15px;
        }

        .feedback-card blockquote {
            font-style: italic;
            margin-bottom: 15px;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .slider-controls button {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 2rem;
            color: var(--accent-color);
            margin: 0 10px;
            transition: color 0.3s ease;
        }

        .slider-controls button:hover {
            color: var(--primary-color);
        }

        .faq .faq-item {
            margin-bottom: 15px;
            border: 1px solid var(--secondary-color);
            border-radius: 5px;
            overflow: hidden;
        }

        .faq .faq-question {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            padding: 15px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq .faq-question span {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        
        .faq .faq-question.active span {
            transform: rotate(45deg);
        }

        .faq .faq-answer {
            background-color: #222;
            padding: 0 15px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease-out;
        }
        
        .faq .faq-answer.visible {
            max-height: 200px;
            padding: 15px;
        }

        .contact-form {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            padding: 40px;
            border-radius: 10px;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-form h2 {
            color: var(--accent-color);
        }

        .contact-form label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }

        .contact-form input {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid var(--primary-color);
            border-radius: 5px;
            font-size: 1rem;
        }

        .contact-form button {
            width: 100%;
            padding: 15px;
            background-color: var(--accent-color);
            color: var(--primary-color);
            border: none;
            border-radius: 5px;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .contact-form button:hover {
            background-color: var(--primary-color);
            color: var(--accent-color);
        }

        .disclaimer {
            background-color: var(--primary-color);
            padding: 20px;
            font-size: 0.9rem;
            text-align: center;
            color: var(--secondary-color);
        }

        footer {
            background-color: var(--primary-color);
            color: var(--secondary-color);
            padding: 40px 0;
            text-align: center;
        }

        footer .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        footer .footer-content .logo {
            color: var(--secondary-color);
        }

        footer .footer-links a, footer .footer-contacts a {
            color: var(--secondary-color);
            text-decoration: none;
            margin: 0 15px;
            transition: color 0.3s ease;
        }

        footer .footer-links a:hover, footer .footer-contacts a:hover {
            color: var(--accent-color);
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(0, 0, 0, 0.9);
            color: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            max-width: 500px;
            display: none;
            z-index: 1001;
            text-align: center;
        }
        
        .cookie-banner p {
            margin-bottom: 10px;
            font-size: 0.9rem;
        }

        .cookie-banner button {
            background-color: var(--accent-color);
            color: var(--primary-color);
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .cookie-banner button:hover {
            background-color: var(--secondary-color);
        }

        .popup-form {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
            z-index: 1002;
        }
        
        .popup-content {
            background-color: #fff;
            color: #000;
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            position: relative;
            max-width: 400px;
            animation: fadeIn 0.5s ease-in-out;
        }

        .close-popup {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 2rem;
            cursor: pointer;
            color: #000;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .burger-menu {
                display: flex;
            }

            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(0, 0, 0, 0.9);
                flex-direction: column;
                transform: translateX(-100%);
                transition: transform 0.5s ease;
            }
            
            nav.active {
                transform: translateX(0);
            }

            nav ul {
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
            }

            nav ul li {
                margin: 15px 0;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            .about .container {
                flex-direction: column;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.2rem;
            }
        }

