:root {
            --primary-color: #8E24AA;
            --secondary-color: #1A237E;
            --accent-color: #FF6F00;
            --light-color: #E8F5E9;
            --dark-color: #263238;
            --text-color: #FFFFFF;
            --text-secondary: #B0BEC5;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
        }
        
        body {
            background-color: var(--dark-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(38, 50, 56, 0.95);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 4px 20px rgba(142, 36, 170, 0.3);
            backdrop-filter: blur(10px);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 3px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .logo:hover {
            color: var(--accent-color);
        }
        
        .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .logo:hover::after {
            width: 100%;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--primary-color);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(26, 35, 126, 0.9), rgba(142, 36, 170, 0.8)), url('../img/22.webp');
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 70% 30%, rgba(255, 111, 0, 0.2), transparent 70%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 60px;
            margin-bottom: 20px;
            color: var(--text-color);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }
        
        .hero h1::after {
            content: '';
            position: absolute;
            width: 60%;
            height: 4px;
            bottom: -15px;
            left: 20%;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            color: var(--text-secondary);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: var(--text-color);
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(142, 36, 170, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
            transition: left 0.5s ease;
            z-index: -1;
        }
        
        .btn:hover::before {
            left: 0;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(142, 36, 170, 0.4);
        }
        
        .about {
            padding: 100px 0;
            background-color: var(--dark-color);
            position: relative;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
        }
        
        .section-title {
            text-align: center;
            font-size: 40px;
            margin-bottom: 50px;
            color: var(--text-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
            font-weight: 700;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            bottom: -10px;
            left: 0;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h2 {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.8;
        }
        
        .about-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.5s ease;
        }
        
        .about-image:hover {
            transform: perspective(1000px) rotateY(0);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .products {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(26, 35, 126, 0.2), rgba(142, 36, 170, 0.2));
            position: relative;
        }
        
        .products .section-title {
            color: var(--text-color);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .product-card {
            background-color: rgba(38, 50, 56, 0.8);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            position: relative;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(142, 36, 170, 0.4);
        }
        
        .product-image {
            height: 200px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-info h3 {
            font-size: 24px;
            margin-bottom: 10px;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .product-info p {
            color: var(--text-secondary);
            margin-bottom: 15px;
            font-size: 14px;
        }
        
        .product-price {
            font-size: 22px;
            font-weight: bold;
            color: var(--accent-color);
            margin-bottom: 15px;
        }
        
        .prices {
            padding: 100px 0;
            background-color: var(--dark-color);
            position: relative;
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .price-card {
            background-color: rgba(38, 50, 56, 0.8);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            position: relative;
            text-align: center;
            padding: 30px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .price-card.featured {
            transform: scale(1.05);
            border: 2px solid var(--primary-color);
            box-shadow: 0 20px 40px rgba(142, 36, 170, 0.4);
        }
        
        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(142, 36, 170, 0.4);
        }
        
        .price-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .price-title {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--text-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
        }
        
        .price-value {
            font-size: 48px;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .price-period {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 30px;
        }
        
        .price-features {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }
        
        .price-features li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
            font-size: 14px;
        }
        
        .price-features li:last-child {
            border-bottom: none;
        }
        
        .gallery {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(26, 35, 126, 0.2), rgba(142, 36, 170, 0.2));
            position: relative;
        }
        
        .gallery .section-title {
            color: var(--text-color);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(142, 36, 170, 0.4);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(38, 50, 56, 0.8));
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-text {
            color: var(--text-color);
        }
        
        .gallery-text h4 {
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary-color);
        }
        
        .feedback {
            padding: 100px 0;
            background-color: var(--dark-color);
            position: relative;
        }
        
        .feedback-slider {
            position: relative;
            margin-top: 50px;
            overflow: hidden;
        }
        
        .feedback-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-item {
            min-width: 100%;
            padding: 30px;
            background-color: rgba(38, 50, 56, 0.8);
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .feedback-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--text-secondary);
            font-size: 18px;
            line-height: 1.8;
            position: relative;
            padding: 0 20px;
        }
        
        .feedback-text::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: -10px;
            font-size: 60px;
            color: var(--primary-color);
            opacity: 0.3;
        }
        
        .feedback-author {
            display: flex;
            align-items: center;
        }
        
        .feedback-author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            border: 3px solid var(--primary-color);
        }
        
        .feedback-author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .feedback-author-info h4 {
            color: var(--accent-color);
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .feedback-author-info p {
            color: var(--text-secondary);
            font-size: 14px;
        }
        
        .feedback-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .feedback-control {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--text-secondary);
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .feedback-control.active {
            background-color: var(--primary-color);
            transform: scale(1.2);
        }
        
        .faq {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(26, 35, 126, 0.2), rgba(142, 36, 170, 0.2));
            position: relative;
        }
        
        .faq .section-title {
            color: var(--text-color);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            margin-top: 50px;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            background-color: rgba(38, 50, 56, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .faq-question {
            padding: 20px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            color: var(--text-color);
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 24px;
            transition: transform 0.3s ease;
        }
        
        .faq-question.active::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            background-color: rgba(38, 50, 56, 0.8);
            transition: all 0.3s ease;
        }
        
        .faq-answer.active {
            padding: 20px;
            max-height: 500px;
        }
        
        .faq-answer p {
            color: var(--text-secondary);
            line-height: 1.8;
        }
        
        .contact {
            padding: 100px 0;
            background-color: var(--dark-color);
            position: relative;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 50px auto 0;
            background-color: rgba(38, 50, 56, 0.8);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: var(--text-color);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            color: var(--text-color);
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 10px rgba(142, 36, 170, 0.3);
        }
        
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        
        .form-submit {
            text-align: center;
        }
        
        .form-submit button {
            padding: 15px 40px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: var(--text-color);
            border: none;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-radius: 50px;
            box-shadow: 0 10px 20px rgba(142, 36, 170, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .form-submit button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
            transition: left 0.5s ease;
            z-index: -1;
        }
        
        .form-submit button:hover::before {
            left: 0;
        }
        
        .form-submit button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(142, 36, 170, 0.4);
        }
        
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .popup.active {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background-color: rgba(38, 50, 56, 0.95);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            transform: scale(0.7);
            transition: transform 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .popup.active .popup-content {
            transform: scale(1);
        }
        
        .popup-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            color: var(--text-color);
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .popup-close:hover {
            color: var(--primary-color);
        }
        
        .popup h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--text-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .popup p {
            color: var(--text-secondary);
            margin-bottom: 30px;
        }
        
        .popup button {
            padding: 10px 25px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: var(--text-color);
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 50px;
            box-shadow: 0 10px 20px rgba(142, 36, 170, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .popup button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
            transition: left 0.5s ease;
            z-index: -1;
        }
        
        .popup button:hover::before {
            left: 0;
        }
        
        .popup button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(142, 36, 170, 0.4);
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: rgba(38, 50, 56, 0.95);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transform: translateY(150%);
            transition: transform 0.5s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .cookie-banner.active {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            color: var(--text-secondary);
            margin-right: 20px;
            font-size: 14px;
        }
        
        .cookie-text a {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .cookie-text a:hover {
            text-decoration: underline;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 20px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 12px;
            border-radius: 50px;
        }
        
        .cookie-accept {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: var(--text-color);
            box-shadow: 0 5px 15px rgba(142, 36, 170, 0.3);
        }
        
        .cookie-accept:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(142, 36, 170, 0.4);
        }
        
        .cookie-decline {
            background-color: transparent;
            color: var(--text-secondary);
            border: 1px solid var(--text-secondary);
        }
        
        .cookie-decline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        footer {
            background-color: rgba(38, 50, 56, 0.95);
            padding: 50px 0 20px;
            backdrop-filter: blur(10px);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--text-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 14px;
        }
        
        .footer-column ul li a:hover {
            color: var(--primary-color);
        }
        
        .footer-contact p {
            color: var(--text-secondary);
            margin-bottom: 10px;
            font-size: 14px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
            font-size: 14px;
        }
        
        .disclaimer {
            background-color: rgba(38, 50, 56, 0.8);
            padding: 20px;
            margin-top: 50px;
            color: var(--text-secondary);
            font-size: 14px;
            text-align: center;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 50px;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: rgba(38, 50, 56, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: right 0.5s ease;
                backdrop-filter: blur(10px);
            }
            
            nav ul.active {
                right: 0;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
                z-index: 1001;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .hero h1 {
                font-size: 40px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .section-title {
                font-size: 30px;
            }
            
            .cookie-banner {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 30px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .price-card.featured {
                transform: scale(1);
            }
            
            .price-card.featured:hover {
                transform: translateY(-10px);
            }
        }

