:root {
            --primary-bg: #1A1A1A;
            --secondary-bg: #2B2B2B;
            --accent-blue: #00A0FF;
            --accent-teal: #00EAD9;
            --text-color: #E0E0E0;
            --light-text-color: #B0B0B0;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        header {
            background-color: var(--primary-bg);
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 1px solid var(--secondary-bg);
        }
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--accent-blue);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .nav-menu {
            list-style: none;
            display: flex;
            gap: 2rem;
            transition: all 0.3s ease-in-out;
        }
        .nav-menu a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            position: relative;
        }
        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 100%;
            transform: scaleX(0);
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent-teal);
            transform-origin: bottom right;
            transition: transform 0.25s ease-out;
        }
        .nav-menu a:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }
        .hamburger {
            display: none;
            cursor: pointer;
        }
        .hamburger .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            background-color: var(--text-color);
            transition: all 0.3s ease-in-out;
        }
        main {
            flex: 1;
            padding-top: 6rem;
        }
        section {
            padding: 5rem 5%;
            position: relative;
        }
        h1, h2, h3 {
            color: var(--accent-teal);
            margin-bottom: 1rem;
            line-height: 1.2;
            text-transform: uppercase;
        }
        h1 {
            font-size: 3rem;
            text-align: center;
        }
        h2 {
            font-size: 2.5rem;
            border-left: 4px solid var(--accent-blue);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--text-color);
            border-bottom: 2px dotted var(--secondary-bg);
            padding-bottom: 0.5rem;
        }
        p {
            margin-bottom: 1rem;
            color: var(--light-text-color);
        }
        .btn {
            display: inline-block;
            background-color: var(--accent-blue);
            color: var(--primary-bg);
            padding: 0.8rem 2rem;
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
            transition: background-color 0.3s ease;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #0087D1;
        }
        .hero {
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)), url('../img/06.webp') no-repeat center center/cover;
            background-attachment: fixed;
            animation: fadeIn 2s ease-in-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin-bottom: 2rem;
            color: var(--text-color);
        }
        .section-separator {
            width: 100px;
            height: 3px;
            background-color: var(--accent-blue);
            margin: 2rem auto;
        }
        .about, .products, .prices, .gallery, .feedback, .faq, .form-section {
            background-color: var(--primary-bg);
        }
        .products-grid, .prices-grid, .gallery-grid, .feedback-slider {
            display: grid;
            gap: 2rem;
            margin-top: 3rem;
        }
        .products-grid {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }
        .products-item {
            background-color: var(--secondary-bg);
            padding: 2rem;
            border-radius: 10px;
            transition: transform 0.3s ease;
            text-align: center;
        }
        .products-item:hover {
            transform: translateY(-10px);
        }
        .prices-grid {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            text-align: center;
        }
        .price-card {
            background-color: var(--secondary-bg);
            padding: 2rem;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            border: 2px solid transparent;
            transition: border-color 0.3s ease, transform 0.3s ease;
        }
        .price-card:hover {
            border-color: var(--accent-blue);
            transform: scale(1.03);
        }
        .price-card h3 {
            color: var(--accent-blue);
        }
        .price-card .price-amount {
            font-size: 3rem;
            font-weight: bold;
            margin: 1rem 0;
            color: var(--accent-teal);
        }
        .price-card ul {
            list-style: none;
            text-align: left;
            margin-top: 1rem;
        }
        .price-card ul li {
            margin-bottom: 0.5rem;
        }
        .gallery-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }
        .gallery-item img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            opacity: 0.8;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        .gallery-item img:hover {
            opacity: 1;
            transform: scale(1.05);
        }
        .feedback-slider {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            gap: 2rem;
        }
        .feedback-slider::-webkit-scrollbar {
            display: none;
        }
        .feedback-card {
            min-width: 80%;
            scroll-snap-align: start;
            background-color: var(--secondary-bg);
            padding: 2rem;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
        }
        .feedback-card p {
            flex-grow: 1;
            font-style: italic;
        }
        .feedback-author {
            font-weight: bold;
            color: var(--accent-blue);
            margin-top: 1rem;
        }
        .faq .faq-item {
            background-color: var(--secondary-bg);
            border-radius: 10px;
            margin-bottom: 1rem;
        }
        .faq .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            position: relative;
            font-weight: bold;
        }
        .faq .faq-question::after {
            content: '+';
            position: absolute;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            color: var(--accent-blue);
            transition: transform 0.3s ease;
        }
        .faq .faq-item.active .faq-question::after {
            transform: translateY(-50%) rotate(45deg);
        }
        .faq .faq-answer {
            padding: 0 1.5rem 1.5rem;
            display: none;
        }
        .form-section {
            background-color: var(--secondary-bg);
            padding: 4rem 5%;
        }
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }
        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            background-color: var(--primary-bg);
            border: 1px solid var(--secondary-bg);
            border-radius: 5px;
            color: var(--text-color);
            font-size: 1rem;
        }
        .contact-form input:focus, .contact-form textarea:focus {
            outline: none;
            border-color: var(--accent-blue);
        }
        .disclaimer {
            background-color: var(--primary-bg);
            padding: 2rem 5%;
            font-size: 0.8rem;
            color: var(--light-text-color);
            border-top: 1px solid var(--secondary-bg);
        }
        footer {
            background-color: var(--secondary-bg);
            padding: 3rem 5%;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            border-top: 1px solid var(--primary-bg);
        }
        footer .footer-column {
            flex: 1;
            min-width: 250px;
        }
        footer .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--accent-blue);
            border-bottom: none;
        }
        footer .footer-column ul {
            list-style: none;
        }
        footer .footer-column a {
            color: var(--light-text-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer .footer-column a:hover {
            color: var(--accent-teal);
        }
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--secondary-bg);
            color: var(--text-color);
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            z-index: 2000;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }
        .cookie-banner.show {
            transform: translateY(0);
        }
        .cookie-banner a {
            color: var(--accent-blue);
            text-decoration: underline;
        }
        .cookie-banner .btn {
            white-space: nowrap;
        }
        .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: 3000;
            visibility: hidden;
            opacity: 0;
            transition: visibility 0s, opacity 0.3s ease;
        }
        .popup.show {
            visibility: visible;
            opacity: 1;
        }
        .popup-content {
            background-color: var(--primary-bg);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            position: relative;
            max-width: 400px;
        }
        .popup-close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--light-text-color);
        }
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 60px;
                left: 100%;
                width: 100%;
                height: calc(100vh - 60px);
                background-color: var(--primary-bg);
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }
            .nav-menu.active {
                left: 0;
            }
            .hamburger {
                display: block;
            }
            h1{
                font-size: 1.8em;
            }
            h2{
                font-size: 1.5em;
            }
        }

