@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap');
        :root {
            --bg-color: rgb(25, 25, 25);
            --primary-color: rgb(255, 69, 0);
            --secondary-color: rgb(200, 200, 200);
            --text-color: rgb(240, 240, 240);
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Roboto Mono', monospace;
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            position: relative;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(25, 25, 25, 0.9);
            padding: 1rem 0;
            z-index: 1000;
            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-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            text-transform: uppercase;
            text-decoration: none;
        }
        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
        }
        nav a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            position: relative;
            transition: color 0.3s ease;
        }
        nav a:hover {
            color: var(--primary-color);
        }
        nav a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        nav a:hover::after {
            width: 100%;
        }
        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }
        .burger-menu div {
            width: 25px;
            height: 3px;
            background-color: var(--primary-color);
            transition: all 0.3s ease;
        }
        main {
            padding-top: 80px;
        }
        section {
            padding: 80px 0;
            position: relative;
        }
        section:nth-of-type(even) {
            background-color: rgba(255, 255, 255, 0.05);
        }
        h1, h2, h3 {
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
        }
        h1 {
            font-size: 3rem;
            color: var(--primary-color);
            letter-spacing: 5px;
        }
        h2 {
            font-size: 2.5rem;
            color: var(--secondary-color);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: url('../img/01.webp') no-repeat center center/cover;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(25, 25, 25, 0.7);
        }
        .hero-content {
            position: relative;
            z-index: 10;
        }
        .hero h1 {
            font-size: 4rem;
            animation: slideInUp 1s ease forwards;
            opacity: 0;
            animation-delay: 0.5s;
        }
        .hero p {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-top: 20px;
            animation: fadeIn 1s ease forwards;
            opacity: 0;
            animation-delay: 1s;
        }
        .cta-button {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--bg-color);
            padding: 15px 30px;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: 700;
            margin-top: 40px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 2px solid var(--primary-color);
            animation: fadeIn 1s ease forwards;
            opacity: 0;
            animation-delay: 1.5s;
        }
        .cta-button:hover {
            background-color: var(--bg-color);
            color: var(--primary-color);
        }
        .about-content, .products-content, .prices-grid, .feedback-slider {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        .about-content img, .products-content img {
            width: 50%;
            height: auto;
            object-fit: cover;
        }
        .text-block {
            flex: 1;
        }
        .prices-grid {
            justify-content: center;
            flex-wrap: wrap;
        }
        .price-card {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 30px;
            text-align: center;
            border: 2px solid var(--secondary-color);
            max-width: 300px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .price-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-10px);
        }
        .price-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        .price-card .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        .price-card ul {
            list-style: none;
            text-align: left;
            margin-top: 20px;
        }
        .price-card ul li {
            margin-bottom: 10px;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        .gallery-item {
            overflow: hidden;
            position: relative;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .gallery-item img:hover {
            transform: scale(1.1);
        }
        .feedback-slider {
            position: relative;
            overflow: hidden;
            height: 250px;
        }
        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
            will-change: transform;
        }
        .feedback-item {
            flex: 0 0 100%;
            text-align: center;
            padding: 20px;
        }
        .feedback-item p {
            font-style: italic;
            margin-bottom: 15px;
        }
        .feedback-item .author {
            font-weight: 700;
            color: var(--primary-color);
        }
        .slider-controls {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        .slider-dot {
            width: 10px;
            height: 10px;
            background-color: var(--secondary-color);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .slider-dot.active {
            background-color: var(--primary-color);
        }
        .faq-item {
            border-bottom: 1px solid var(--secondary-color);
        }
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            cursor: pointer;
            font-weight: 700;
            transition: color 0.3s ease;
        }
        .faq-question:hover {
            color: var(--primary-color);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 20px;
            transition: max-height 0.5s ease;
        }
        .faq-answer p {
            padding-bottom: 20px;
        }
        .faq-item.active .faq-answer {
            max-height: 200px;
        }
        .faq-item.active .faq-question::after {
            content: '-';
        }
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .contact-form input {
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--secondary-color);
            color: var(--text-color);
            padding: 15px;
            font-family: 'Roboto Mono', monospace;
            font-size: 1rem;
        }
        .contact-form input:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        .contact-form button {
            background-color: var(--primary-color);
            color: var(--bg-color);
            border: none;
            padding: 15px;
            text-transform: uppercase;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .contact-form button:hover {
            background-color: var(--secondary-color);
            color: var(--bg-color);
        }
        .disclaimer {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 20px;
            text-align: center;
            font-size: 0.8rem;
            color: var(--secondary-color);
        }
        footer {
            background-color: var(--bg-color);
            padding: 40px 0;
            text-align: center;
        }
        footer .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        footer nav {
            display: flex;
            gap: 20px;
        }
        footer nav a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 400;
            transition: color 0.3s ease;
        }
        footer nav a:hover {
            color: var(--primary-color);
        }
        .contacts {
            text-align: right;
        }
        .contacts p {
            margin-bottom: 5px;
            font-size: 0.9rem;
        }
        .contacts a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .contacts a:hover {
            color: var(--primary-color);
        }
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(25, 25, 25, 0.95);
            padding: 20px;
            border-top: 2px solid var(--primary-color);
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
            max-width: 90%;
            z-index: 1001;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .cookie-banner p {
            font-size: 0.9rem;
        }
        .cookie-banner a {
            color: var(--primary-color);
            text-decoration: underline;
        }
        .cookie-button {
            background-color: var(--primary-color);
            color: var(--bg-color);
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            font-weight: 700;
            transition: background-color 0.3s ease;
        }
        .cookie-button:hover {
            background-color: var(--secondary-color);
        }
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(25, 25, 25, 0.9);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            backdrop-filter: blur(5px);
        }
        .popup-content {
            background-color: rgba(25, 25, 25, 0.95);
            border: 2px solid var(--primary-color);
            padding: 40px;
            text-align: center;
            position: relative;
        }
        .close-popup {
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 2rem;
            color: var(--secondary-color);
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .close-popup:hover {
            color: var(--primary-color);
        }
        @keyframes slideInUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        [data-animate] {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        [data-animate].animated {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            nav {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 70%;
                background-color: rgba(25, 25, 25, 0.95);
                flex-direction: column;
                justify-content: center;
                gap: 3rem;
                transition: right 0.3s ease;
                padding-top: 60px;
            }
            nav.active {
                right: 0;
            }
            nav ul {
                flex-direction: column;
                text-align: center;
            }
            .burger-menu {
                display: flex;
            }
            .about-content, .products-content {
                flex-direction: column;
            }
            .about-content img, .products-content img {
                width: 100%;
            }
            footer .container {
                flex-direction: column;
                gap: 20px;
            }
            footer nav {
                order: 2;
                justify-content: center;
            }
            .contacts {
                text-align: center;
                order: 3;
            }
        }

