:root {
            --primary-color: #6F2DA8;
            --secondary-color: #333;
            --text-color: #eee;
            --bg-color: #111;
            --accent-color: #6F2DA8;
            --card-bg: #222;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        html {
            scroll-behavior: smooth;
        }

        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(17, 17, 17, 0.9);
            backdrop-filter: blur(5px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--accent-color);
            text-decoration: none;
        }

        .nav-menu {
            list-style: none;
            display: flex;
        }

        .nav-menu li {
            margin-left: 25px;
        }

        .nav-menu a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 16px;
            position: relative;
            padding: 5px 0;
            transition: color 0.3s ease;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover,
        .nav-menu a:focus {
            color: var(--accent-color);
        }

        .nav-menu a:hover::after,
        .nav-menu a:focus::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
        }

        .hamburger span {
            display: block;
            height: 3px;
            width: 100%;
            background: var(--text-color);
            border-radius: 10px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        main {
            padding-top: 80px;
        }

        section {
            padding: 80px 0;
            overflow: hidden;
        }

        .hero {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            height: 100vh;
            background-image: url('../img/12.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: #fff;
            animation: fadeIn 1s ease-out;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            padding: 20px;
        }

        .hero-content h1 {
            font-size: 5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
            line-height: 1;
        }

        .hero-content p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
        }

        .btn {
            display: inline-block;
            background-color: var(--accent-color);
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            letter-spacing: 1px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        h2, h3 {
            text-align: center;
            margin-bottom: 40px;
            color: var(--accent-color);
            position: relative;
        }

        h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
            margin: 10px auto 0;
        }

        .about-content,
        .product-item,
        .price-card,
        .gallery-item,
        .feedback-card,
        .faq-item {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in {
            opacity: 1;
            transform: translateY(0);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-content img {
            max-width: 50%;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .about-content img:hover {
            transform: scale(1);
        }

        .about-content .text-content {
            flex: 1;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .product-item {
            text-align: center;
            background-color: var(--card-bg);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .product-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
            margin-bottom: 20px;
        }

        .product-item h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .prices-grid {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .price-card {
            background-color: var(--card-bg);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            width: 300px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
            transition: border-color 0.3s ease;
        }

        .price-card.featured {
            border-color: var(--accent-color);
            transform: scale(1.05);
            z-index: 1;
        }

        .price-card::before {
            content: '';
            position: absolute;
            top: -50px;
            left: -50px;
            width: 150px;
            height: 150px;
            background-color: rgba(111, 45, 168, 0.1);
            transform: rotate(45deg);
        }

        .price-card h3 {
            font-size: 1.8rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }

        .price-card .price {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 10px;
            line-height: 1;
        }

        .price-card .price small {
            font-size: 1rem;
            font-weight: normal;
            opacity: 0.7;
        }

        .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
            padding-left: 0;
        }

        .price-card ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }

        .price-card ul li::before {
            content: '✓';
            color: #4CAF50;
            position: absolute;
            left: 0;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            position: relative;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .feedback-slider-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .feedback-slider {
            display: flex;
            overflow: hidden;
            scroll-snap-type: x mandatory;
            gap: 20px;
        }

        .feedback-card {
            flex: 0 0 100%;
            padding: 30px;
            background-color: var(--card-bg);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            scroll-snap-align: start;
            min-height: 200px;
        }

        .feedback-card p {
            font-style: italic;
            margin-bottom: 20px;
        }

        .feedback-card .author {
            text-align: right;
            font-weight: bold;
            color: var(--accent-color);
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            background-color: #555;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .slider-dot.active {
            background-color: var(--accent-color);
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .faq-item {
            background-color: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            color: var(--text-color);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease-out;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 20px;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: var(--card-bg);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .contact-form .form-group {
            margin-bottom: 20px;
        }

        .contact-form label {
            display: block;
            margin-bottom: 5px;
            color: var(--text-color);
        }

        .contact-form input {
            width: 100%;
            padding: 10px;
            border-radius: 5px;
            border: 1px solid #444;
            background-color: #333;
            color: var(--text-color);
        }

        .contact-form .btn {
            width: 100%;
            text-align: center;
            font-size: 1.1rem;
        }

        .popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .popup-content {
            background-color: var(--card-bg);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            max-width: 400px;
            position: relative;
        }

        .close-popup {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            cursor: pointer;
            color: #888;
        }

        .popup.visible {
            display: flex;
            opacity: 1;
        }

        footer {
            background-color: #000;
            padding: 40px 0 20px;
            text-align: center;
            color: #888;
            border-top: 1px solid #333;
        }

        footer .container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-logo {
            flex-basis: 100%;
            margin-bottom: 20px;
        }

        .footer-logo .logo {
            font-size: 28px;
        }

        .footer-section {
            flex-basis: calc(33% - 20px);
            min-width: 200px;
            text-align: left;
        }

        .footer-section h4 {
            color: var(--text-color);
            margin-bottom: 15px;
        }

        .footer-section p, .footer-section a {
            color: #888;
            text-decoration: none;
        }

        .footer-section a:hover {
            text-decoration: underline;
        }

        .footer-bottom {
            margin-top: 40px;
            border-top: 1px solid #333;
            padding-top: 20px;
            text-align: center;
            width: 100%;
            font-size: 0.9rem;
        }

        .disclaimer {
            text-align: center;
            padding: 20px;
            background-color: var(--card-bg);
            color: #aaa;
            font-size: 0.9rem;
            border-top: 1px solid #333;
            margin-top: 50px;
        }

        .cookie-banner {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: var(--card-bg);
            color: var(--text-color);
            padding: 20px;
            border-radius: 10px;
            max-width: 400px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
            display: none;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
            z-index: 1500;
        }

        .cookie-banner.show {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .cookie-banner-content {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .cookie-banner-text {
            flex-grow: 1;
        }

        .cookie-banner-text p {
            margin-bottom: 10px;
        }

        .cookie-banner-text a {
            color: var(--accent-color);
            text-decoration: underline;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
        }

        .cookie-btn {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
        }

        .cookie-btn.deny {
            background-color: #555;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(17, 17, 17, 0.95);
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-menu li {
                margin: 0;
                text-align: center;
                border-bottom: 1px solid #333;
            }

            .nav-menu a {
                display: block;
                padding: 15px 0;
            }

            .hamburger {
                display: flex;
            }

            .hero-content h1 {
                font-size: 3rem;
            }

            .hero-content p {
                font-size: 1.2rem;
            }

            .about-content {
                flex-direction: column;
                text-align: center;
            }

            .about-content img {
                max-width: 100%;
            }

            .prices-grid {
                flex-direction: column;
                align-items: center;
            }

            .price-card {
                width: 100%;
            }

            .feedback-card {
                min-height: auto;
            }
        }

