:root {
            --primary-color: #0d1b2a;
            --secondary-color: #1b263b;
            --accent-color: #ff9f1c;
            --text-color: #e0e1dd;
            --bg-light: #f5f5f5;
            --bg-dark: #3a506b;
            --font-family-header: 'Orbitron', sans-serif;
            --font-family-body: 'Rajdhani', sans-serif;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Rajdhani:wght@400;600&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family-body);
            background-color: var(--primary-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            background-color: rgba(13, 27, 42, 0.9);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow);
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-family-header);
            font-size: 2em;
            color: var(--accent-color);
            text-decoration: none;
            text-transform: uppercase;
        }

        .main-nav ul {
            list-style: none;
            display: flex;
        }

        .main-nav li {
            margin-left: 30px;
        }

        .main-nav a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            position: relative;
            transition: color 0.3s ease;
        }

        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }

        .main-nav a:hover::after {
            width: 100%;
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
            background: transparent;
            border: none;
            padding: 0;
        }

        .burger-menu .bar {
            width: 100%;
            height: 3px;
            background-color: var(--text-color);
            border-radius: 10px;
            transition: all 0.3s linear;
        }

        /* Main Sections */
        main {
            padding-top: 80px;
        }

        section {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        section h2 {
            font-family: var(--font-family-header);
            font-size: 3em;
            text-align: center;
            margin-bottom: 50px;
            color: var(--accent-color);
            text-transform: uppercase;
        }

        /* Hero */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            background-image: url('../img/02.webp');
            animation: fadeIn 2s ease-in;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(13, 27, 42, 0.7);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            color: #fff;
        }

        .hero h1 {
            font-family: var(--font-family-header);
            font-size: 4.5em;
            text-transform: uppercase;
            letter-spacing: 5px;
            animation: slideInDown 1s ease-out;
        }

        .hero p {
            font-size: 1.5em;
            margin-top: 20px;
            animation: fadeIn 2s ease-out 1s forwards;
            opacity: 0;
        }

        .hero .cta-button {
            margin-top: 40px;
            padding: 15px 40px;
            background-color: var(--accent-color);
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            border-radius: 50px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: inline-block;
            animation: fadeIn 2s ease-out 1.5s forwards;
            opacity: 0;
        }

        .hero .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px var(--accent-color);
        }

        /* About & Products */
        .about, .products, .feedback, .faq {
            background-color: var(--secondary-color);
        }

        .about h2, .products h2, .prices h2, .gallery h2, .feedback h2, .faq h2 {
            color: var(--accent-color);
        }

        .about p, .products p {
            font-size: 1.1em;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .products .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .products .product-card {
            background-color: var(--primary-color);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            text-align: center;
            padding: 30px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }

        .products .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 20px;
            border: 2px solid var(--accent-color);
        }

        .products .product-card h3 {
            font-family: var(--font-family-header);
            color: var(--accent-color);
            margin-bottom: 10px;
        }

        /* Prices */
        .prices {
            background-color: var(--primary-color);
            padding: 100px 0;
        }

        .prices .price-grid {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .prices .price-card {
            background-color: var(--secondary-color);
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            width: 350px;
            box-shadow: var(--shadow);
            border: 2px solid transparent;
            transition: transform 0.3s ease, border-color 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .prices .price-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-color);
        }

        .prices .price-card h3 {
            font-family: var(--font-family-header);
            color: var(--accent-color);
            font-size: 2em;
            margin-bottom: 20px;
        }

        .prices .price-card .price {
            font-family: var(--font-family-header);
            font-size: 3em;
            color: var(--text-color);
        }

        .prices .price-card .price span {
            font-size: 0.5em;
            vertical-align: top;
        }

        .prices .price-card ul {
            list-style: none;
            margin: 30px 0;
            text-align: left;
        }

        .prices .price-card li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 25px;
        }

        .prices .price-card li::before {
            content: '✓';
            color: var(--accent-color);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .prices .price-card .buy-button {
            padding: 12px 30px;
            background-color: var(--accent-color);
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            border-radius: 50px;
            transition: background-color 0.3s ease;
        }

        .prices .price-card .buy-button:hover {
            background-color: #f7a840;
        }

        /* Gallery */
        .gallery {
            background-color: var(--bg-dark);
        }

        .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: 10px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
            opacity: 0;
            transform: scale(0.9);
        }

        .gallery-grid img:hover {
            transform: scale(1.05);
        }

        /* Feedback */
        .feedback {
            background-color: var(--secondary-color);
        }

        .feedback .slider-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }

        .feedback .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .feedback .slide {
            min-width: 100%;
            padding: 20px;
            text-align: center;
            background-color: var(--primary-color);
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .feedback .slide p {
            font-style: italic;
            margin-bottom: 15px;
            font-size: 1.1em;
        }

        .feedback .slide .author {
            font-weight: 600;
            color: var(--accent-color);
        }

        .feedback .slider-buttons {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 15px;
        }

        .feedback .slider-buttons button {
            background-color: transparent;
            color: var(--accent-color);
            border: 2px solid var(--accent-color);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            font-size: 1.5em;
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .feedback .slider-buttons button:hover {
            background-color: var(--accent-color);
            color: var(--primary-color);
        }

        /* FAQ */
        .faq {
            background-color: var(--primary-color);
        }

        .faq .faq-item {
            border-bottom: 1px solid var(--text-color);
            padding: 20px 0;
        }

        .faq .faq-item:last-child {
            border-bottom: none;
        }

        .faq .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-size: 1.2em;
            font-weight: 600;
        }

        .faq .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            padding-top: 0;
        }

        .faq .faq-item.active .faq-answer {
            padding-top: 20px;
            max-height: 200px;
            transition: max-height 0.4s ease-in;
        }

        /* Contact Form */
        .contact-form {
            background-color: var(--secondary-color);
            padding: 80px 0;
            text-align: center;
        }

        .contact-form h2 {
            font-family: var(--font-family-header);
            color: var(--accent-color);
        }

        .contact-form .form-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-form form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 30px;
        }

        .contact-form .form-group {
            text-align: left;
        }

        .contact-form label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .contact-form input {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--text-color);
            border-radius: 5px;
            background-color: var(--primary-color);
            color: var(--text-color);
        }

        .contact-form button {
            padding: 15px 40px;
            background-color: var(--accent-color);
            color: var(--primary-color);
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .contact-form button:hover {
            background-color: #f7a840;
            transform: scale(1.05);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            padding: 40px 0 20px;
            text-align: center;
            border-top: 1px solid var(--text-color);
        }

        footer .footer-nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        footer .footer-nav a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        footer .footer-nav a:hover {
            color: var(--accent-color);
        }

        footer .contacts p {
            margin: 5px 0;
        }

        /* Disclaimer */
        .disclaimer {
            background-color: var(--secondary-color);
            padding: 20px;
            font-size: 0.9em;
            text-align: center;
            border-top: 1px solid var(--text-color);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: rgba(27, 38, 59, 0.95);
            color: var(--text-color);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0,0,0,0.5);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            z-index: 2000;
            transition: transform 0.5s ease-in-out;
        }

        .cookie-banner.hidden {
            transform: translateY(200%);
        }

        .cookie-banner p {
            flex: 1;
            margin: 0;
            font-size: 0.9em;
        }

        .cookie-banner .button-group {
            display: flex;
            gap: 10px;
        }

        .cookie-banner a {
            color: var(--accent-color);
            text-decoration: underline;
        }

        .cookie-banner .accept-button, .cookie-banner .decline-button {
            padding: 8px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }

        .cookie-banner .accept-button {
            background-color: var(--accent-color);
            color: var(--primary-color);
        }

        .cookie-banner .accept-button:hover {
            background-color: #f7a840;
        }

        .cookie-banner .decline-button {
            background-color: var(--text-color);
            color: var(--primary-color);
        }

        /* Form Popup */
        .form-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.8);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 3000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .form-popup-overlay.show {
            display: flex;
            opacity: 1;
        }

        .form-popup {
            background-color: var(--secondary-color);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            position: relative;
            box-shadow: 0 0 20px rgba(0,0,0,0.5);
            width: 90%;
            max-width: 500px;
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }

        .form-popup-overlay.show .form-popup {
            transform: scale(1);
        }

        .form-popup h3 {
            color: var(--accent-color);
            font-family: var(--font-family-header);
            margin-bottom: 20px;
        }

        .form-popup button.close-button {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 1.5em;
            cursor: pointer;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        @keyframes slideInDown {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .main-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(13, 27, 42, 0.95);
                backdrop-filter: blur(10px);
                padding: 20px 0;
                box-shadow: var(--shadow);
            }
            .main-nav.show {
                display: flex;
            }
            .main-nav ul {
                flex-direction: column;
            }
            .main-nav li {
                margin: 15px 0;
                text-align: center;
            }
            .burger-menu {
                display: flex;
            }
            .hero h1 {
                font-size: 3em;
            }
            .hero p {
                font-size: 1.2em;
            }
            section {
                padding: 50px 0;
            }
            section h2 {
                font-size: 2.5em;
            }
            .feedback .slider-container {
                padding: 0 10px;
            }
            footer .footer-nav ul {
                flex-direction: column;
                gap: 10px;
            }
        }

