:root {
            --primary-color: #00f0ff;
            --secondary-color: #ff0080;
            --background-color: #0d0d0d;
            --text-color: #e0e0e0;
            --light-grey: #a0a0a0;
            --dark-grey: #1a1a1a;
            --border-radius: 8px;
            --transition-speed: 0.3s;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
            text-decoration: none;
            color: var(--text-color);
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--background-color);
            overflow-x: hidden;
            line-height: 1.6;
        }
        header {
            width: 100%;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            background: rgba(13, 13, 13, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--dark-grey);
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            animation: fadeIn 1s ease-in-out;
        }
        header .logo {
            font-weight: bold;
            font-size: 1.8rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--primary-color);
        }
        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        .nav-menu a {
            font-weight: 500;
            transition: color var(--transition-speed), transform var(--transition-speed);
            position: relative;
        }
        .nav-menu a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width var(--transition-speed);
        }
        .nav-menu a:hover {
            color: var(--secondary-color);
        }
        .nav-menu a:hover::after {
            width: 100%;
        }
        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            position: relative;
            z-index: 100;
        }
        .burger span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--primary-color);
            transition: transform var(--transition-speed), opacity var(--transition-speed);
        }
        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .burger.active span:nth-child(2) {
            opacity: 0;
        }
        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
        main {
            padding-top: 80px;
        }
        section {
            padding: 5rem 5%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        h1, h2, h3 {
            font-weight: 700;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
        }
        h1 { font-size: 3.5rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 1.8rem; }
        p {
            margin-bottom: 1rem;
            color: var(--light-grey);
            font-size: 1.1rem;
        }
        .btn {
            display: inline-block;
            padding: 0.8rem 2.5rem;
            background-color: var(--primary-color);
            color: var(--background-color);
            font-weight: bold;
            border-radius: var(--border-radius);
            transition: transform var(--transition-speed), background-color var(--transition-speed);
            text-transform: uppercase;
        }
        .btn:hover {
            transform: translateY(-3px);
            background-color: var(--secondary-color);
        }
        .hero {
            background: url('../img/08.webp') no-repeat center center/cover;
            color: white;
            position: relative;
            height: 100vh;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
        }
        .hero .hero-content {
            z-index: 1;
            animation: slideUp 1s ease-out;
        }
        .hero h1 {
            font-size: 4rem;
            color: var(--primary-color);
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: var(--light-grey);
        }
        .about {
            background-color: var(--dark-grey);
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 2rem;
        }
        .about img {
            width: 50%;
            border-radius: var(--border-radius);
            box-shadow: 0 4px 15px rgba(0, 240, 255, 0.2);
            transition: transform var(--transition-speed);
        }
        .about img:hover {
            transform: scale(1.02);
        }
        .about .content {
            width: 50%;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s ease, transform 1s ease;
        }
        .products {
            background-color: var(--background-color);
            text-align: center;
        }
        .products .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .product-card {
            background: var(--dark-grey);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 240, 255, 0.1);
            position: relative;
            transition: transform var(--transition-speed);
        }
        .product-card:hover {
            transform: translateY(-5px);
        }
        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .product-card .info {
            padding: 1.5rem;
            text-align: left;
        }
        .product-card h3 {
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }
        .product-card p {
            font-size: 0.9rem;
            color: var(--light-grey);
        }
        .prices {
            background-color: var(--dark-grey);
            text-align: center;
        }
        .prices .price-grid {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
        }
        .price-card {
            background: var(--background-color);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            width: 300px;
            text-align: center;
            border: 1px solid var(--dark-grey);
            transition: transform var(--transition-speed), border-color var(--transition-speed);
        }
        .price-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-color);
        }
        .price-card h3 {
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        .price-card .price-value {
            font-size: 3rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 2rem;
        }
        .price-card li {
            margin-bottom: 0.5rem;
            color: var(--light-grey);
        }
        .price-card li::before {
            content: '✓';
            color: var(--primary-color);
            margin-right: 0.5rem;
        }
        .gallery {
            text-align: center;
            background-color: var(--background-color);
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }
        .gallery-grid img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: var(--border-radius);
            transition: transform var(--transition-speed);
        }
        .gallery-grid img:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px var(--primary-color);
        }
        .feedback {
            background-color: var(--dark-grey);
        }
        .feedback-slider-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            margin: auto;
            overflow: hidden;
        }
        .feedback-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        .feedback-slide {
            min-width: 100%;
            padding: 2rem;
            background: var(--background-color);
            border-radius: var(--border-radius);
            border: 1px solid var(--dark-grey);
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 240, 255, 0.1);
        }
        .feedback-slide p {
            font-style: italic;
            color: var(--light-grey);
            margin-bottom: 1rem;
        }
        .feedback-slide .author {
            font-weight: bold;
            color: var(--primary-color);
        }
        .slider-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }
        .slider-nav button {
            background: rgba(0, 0, 0, 0.5);
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 0.5rem 1rem;
            border-radius: 50%;
            transition: background var(--transition-speed);
        }
        .slider-nav button:hover {
            background: var(--primary-color);
        }
        .faq {
            background-color: var(--background-color);
        }
        .faq-item {
            border-bottom: 1px solid var(--dark-grey);
            padding: 1rem 0;
        }
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: bold;
            color: var(--primary-color);
            transition: color var(--transition-speed);
        }
        .faq-question:hover {
            color: var(--secondary-color);
        }
        .faq-question .icon {
            font-size: 1.5rem;
            transition: transform var(--transition-speed);
        }
        .faq-question.active .icon {
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-in-out;
            color: var(--light-grey);
            padding-top: 0;
        }
        .faq-answer p {
            padding: 1rem 0;
            margin: 0;
        }
        .contact-form-container {
            max-width: 600px;
            margin: 0 auto;
            padding: 2rem;
            background: var(--dark-grey);
            border-radius: var(--border-radius);
            box-shadow: 0 4px 15px rgba(0, 240, 255, 0.2);
        }
        .contact-form-container h2 {
            text-align: center;
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }
        .form-group input {
            width: 100%;
            padding: 0.8rem;
            background: var(--background-color);
            border: 1px solid var(--dark-grey);
            border-radius: var(--border-radius);
            color: var(--text-color);
            transition: border-color var(--transition-speed);
        }
        .form-group input:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        button[type="submit"] {
            width: 100%;
            padding: 1rem;
            background-color: var(--primary-color);
            color: var(--background-color);
            font-weight: bold;
            border: none;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: background-color var(--transition-speed), transform var(--transition-speed);
        }
        button[type="submit"]:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
        }
        .disclaimer {
            padding: 2rem 5%;
            background-color: var(--dark-grey);
            text-align: center;
            border-top: 1px solid var(--dark-grey);
            font-size: 0.9rem;
            color: var(--light-grey);
        }
        footer {
            background-color: var(--background-color);
            padding: 2rem 5%;
            border-top: 1px solid var(--dark-grey);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        footer .footer-links a {
            margin: 0 1rem;
            color: var(--light-grey);
            transition: color var(--transition-speed);
        }
        footer .footer-links a:hover {
            color: var(--primary-color);
        }
        footer .contact-info {
            font-size: 0.9rem;
            color: var(--light-grey);
            text-align: right;
        }
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(13, 13, 13, 0.9);
            backdrop-filter: blur(10px);
            padding: 1.5rem 2rem;
            border-radius: var(--border-radius);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            display: none;
            align-items: center;
            gap: 2rem;
            z-index: 1001;
            width: 90%;
            max-width: 600px;
            border: 1px solid var(--dark-grey);
        }
        .cookie-banner p {
            margin: 0;
            font-size: 0.9rem;
        }
        .cookie-banner .btn {
            white-space: nowrap;
            padding: 0.5rem 1.5rem;
        }
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
        }
        .popup-content {
            background: var(--dark-grey);
            padding: 3rem;
            border-radius: var(--border-radius);
            text-align: center;
            position: relative;
            border: 1px solid var(--primary-color);
            animation: slideIn 0.5s ease-out;
        }
        .close-btn {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 2rem;
            color: var(--light-grey);
            cursor: pointer;
            transition: color var(--transition-speed);
        }
        .close-btn:hover {
            color: var(--secondary-color);
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        @keyframes slideIn {
            from { transform: scale(0.9) translateY(20px); opacity: 0; }
            to { transform: scale(1) translateY(0); opacity: 1; }
        }
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 0;
                right: 0;
                background: rgba(13, 13, 13, 0.95);
                backdrop-filter: blur(10px);
                width: 70%;
                height: 100vh;
                padding-top: 6rem;
                align-items: center;
                gap: 3rem;
                transition: transform 0.5s ease-in-out;
                transform: translateX(100%);
            }
            .nav-menu.active {
                display: flex;
                transform: translateX(0);
            }
            .burger {
                display: flex;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.2rem;
            }
            .about, footer {
                flex-direction: column;
                text-align: center;
            }
            .about img, .about .content {
                width: 100%;
            }
            .contact-info {
                text-align: center;
            }
            h1{
                font-size: 2em !important;
            }
            h2{
                font-size: 1.5em !important;
            }
        }

