:root {
            --primary-color: #5D26C1;
            --secondary-color: #A13E97;
            --text-color: #E2E2E2;
            --background-color: #1A1A1A;
            --accent-color: #D65A31;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
        }

        a {
            color: var(--accent-color);
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(26, 26, 26, 0.8);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo a {
            font-size: 2em;
            font-weight: bold;
            color: var(--primary-color);
        }

        nav ul {
            list-style: none;
            display: flex;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            color: var(--text-color);
            font-weight: 500;
            transition: color 0.3s ease;
        }

        nav ul li a:hover {
            color: var(--accent-color);
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
        }

        .burger-menu div {
            width: 100%;
            height: 3px;
            background: var(--text-color);
            transition: all 0.3s ease;
        }

        .nav-active {
            transform: translateX(0) !important;
        }

        .menu-open .line1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .menu-open .line2 {
            opacity: 0;
        }

        .menu-open .line3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        main {
            padding-top: 80px;
        }

        section {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        h1, h2, h3 {
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        h1 {
            font-size: 3.5em;
            line-height: 1.2;
        }

        h2 {
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 50px;
        }

        h3 {
            font-size: 1.8em;
        }

        .button {
            display: inline-block;
            background-color: var(--accent-color);
            color: var(--text-color);
            padding: 15px 30px;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .button:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
            text-decoration: none;
        }

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            background: url('../img/04.webp') no-repeat center center/cover;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            animation: fadeIn 1.5s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .about .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 50px;
        }

        .about-text, .about-image {
            flex: 1 1 450px;
        }

        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s ease;
        }
        
        .about-image img:hover {
            transform: scale(1.05);
        }

        .products .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: rgba(var(--primary-color), 0.1);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
        }

        .product-card h3 {
            color: var(--secondary-color);
        }

        .prices .price-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .price-card {
            background: rgba(var(--secondary-color), 0.1);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            flex: 1 1 300px;
            max-width: 350px;
            border: 2px solid transparent;
            transition: border-color 0.3s ease, transform 0.3s ease;
        }

        .price-card.free {
            border-color: var(--accent-color);
            background: rgba(var(--accent-color), 0.1);
        }
        
        .price-card:hover {
            transform: translateY(-10px);
        }

        .price-card h3 {
            font-size: 2em;
            color: var(--accent-color);
        }

        .price-card .price {
            font-size: 3em;
            margin: 20px 0;
            font-weight: bold;
            color: var(--primary-color);
        }

        .price-card ul {
            list-style: none;
            text-align: left;
            margin: 20px 0;
        }

        .price-card ul li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .price-card ul li::before {
            content: '✔';
            color: var(--accent-color);
            margin-right: 10px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

        .gallery-item img:hover {
            transform: scale(1.05);
        }

        .feedback .slider-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
            padding: 20px;
        }

        .feedback-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .feedback-card {
            flex-shrink: 0;
            width: 100%;
            padding: 30px;
            background: rgba(var(--secondary-color), 0.1);
            border-radius: 10px;
            margin: 0 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .feedback-card p {
            font-style: italic;
            margin-bottom: 15px;
        }

        .feedback-card span {
            font-weight: bold;
            display: block;
        }
        
        .faq .accordion-item {
            border-bottom: 1px solid var(--secondary-color);
            margin-bottom: 15px;
        }

        .accordion-header {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .accordion-header h3 {
            margin: 0;
            color: var(--text-color);
        }

        .accordion-header span {
            font-size: 2em;
            transition: transform 0.3s ease;
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease-out;
            padding: 0 20px;
        }

        .accordion-item.active .accordion-content {
            max-height: 200px;
            padding-bottom: 20px;
        }

        .accordion-item.active .accordion-header span {
            transform: rotate(45deg);
        }
        
        .contact form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
        }

        .form-group input, .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--secondary-color);
            background-color: var(--background-color);
            color: var(--text-color);
            border-radius: 5px;
        }
        
        .form-group input:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .disclaimer {
            background: #222;
            padding: 30px;
            text-align: center;
            color: #aaa;
            font-size: 0.9em;
        }

        footer {
            background: #111;
            color: #aaa;
            padding: 40px 0;
            text-align: center;
        }

        footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        .footer-logo {
            flex-basis: 100%;
            margin-bottom: 20px;
        }

        .footer-logo a {
            font-size: 1.5em;
            color: var(--primary-color);
            font-weight: bold;
        }

        .footer-links, .footer-contact {
            flex: 1 1 45%;
            margin-bottom: 20px;
            text-align: left;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li a {
            color: #aaa;
        }

        .footer-links ul li a:hover {
            color: var(--accent-color);
        }

        .footer-contact p {
            margin: 5px 0;
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(var(--secondary-color), 0.9);
            color: var(--text-color);
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            z-index: 2000;
        }

        .cookie-banner-text a {
            color: var(--accent-color);
            font-weight: bold;
        }

        .cookie-banner-btn {
            background: var(--accent-color);
            color: var(--text-color);
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 5px;
        }
        
        .cookie-banner-btn:hover {
            background: var(--primary-color);
        }
        
        .modal {
            display: none;
            position: fixed;
            z-index: 3000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background-color: #333;
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
            max-width: 500px;
            position: relative;
        }

        .close-btn {
            color: #aaa;
            float: right;
            font-size: 30px;
            font-weight: bold;
            position: absolute;
            top: 10px;
            right: 20px;
            cursor: pointer;
        }

        /* Animations */
        [data-animation] {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s ease-out, transform 1s ease-out;
        }

        [data-animation].animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Media Queries */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5em;
            }

            h2 {
                font-size: 2em;
            }

            .header-content {
                flex-wrap: wrap;
            }

            nav {
                width: 100%;
                display: none;
            }
            
            nav.active {
                display: block;
                animation: slideIn 0.5s forwards;
            }
            
            @keyframes slideIn {
                from {
                    max-height: 0;
                    opacity: 0;
                }
                to {
                    max-height: 500px;
                    opacity: 1;
                }
            }

            nav ul {
                flex-direction: column;
                text-align: center;
                padding-top: 20px;
            }

            nav ul li {
                margin: 10px 0;
            }

            .burger-menu {
                display: flex;
            }

            .footer-content {
                flex-direction: column;
            }

            .footer-links, .footer-contact {
                text-align: center;
            }
        }

