* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Rajdhani', sans-serif;
        }
        
        :root {
            --bg-dark: #0a0a0a;
            --bg-medium: #1a1a2e;
            --bg-light: #16213e;
            --primary: #ff00ff;
            --secondary: #00ffff;
            --accent: #ff00aa;
            --text: #ffffff;
            --text-light: #cccccc;
            --text-dim: #888888;
        }
        
        body {
            background-color: var(--bg-dark);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid var(--primary);
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            letter-spacing: 2px;
            text-decoration: none;
            color: var(--text);
            text-transform: uppercase;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
        }
        
        .nav {
            display: flex;
        }
        
        .nav-list {
            display: flex;
            list-style: none;
        }
        
        .nav-item {
            margin-left: 25px;
        }
        
        .nav-link {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transition: width 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--secondary);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
        }
        
        .burger span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: var(--primary);
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            padding: 150px 0 80px;
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-medium) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../img/14.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 60px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
            animation: glitch 2s infinite;
        }
        
        .hero p {
            font-size: 20px;
            max-width: 700px;
            margin-bottom: 30px;
            color: var(--text-light);
        }
        
        .btn {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: var(--text);
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--secondary), var(--primary));
            z-index: -1;
            transition: all 0.3s ease;
            opacity: 0;
        }
        
        .btn:hover::before {
            opacity: 1;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 0, 255, 0.3);
        }
        
        /* About Section */
        .about {
            padding: 80px 0;
            background-color: var(--bg-medium);
            position: relative;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 42px;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 70%;
            height: 3px;
            bottom: -10px;
            left: 15%;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            align-items: center;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: var(--text-light);
            font-size: 18px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: all 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Products Section */
        .products {
            padding: 80px 0;
            background-color: var(--bg-dark);
            position: relative;
        }
        
        .products::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary), var(--primary));
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: var(--bg-medium);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid rgba(255, 0, 255, 0.2);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
        }
        
        .product-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 25px;
        }
        
        .product-info h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .product-info p {
            color: var(--text-light);
            margin-bottom: 20px;
        }
        
        /* Prices Section */
        .prices {
            padding: 80px 0;
            background-color: var(--bg-medium);
            position: relative;
        }
        
        .prices::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .price-card {
            background-color: var(--bg-light);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid rgba(255, 0, 255, 0.2);
        }
        
        .price-card.featured {
            transform: scale(1.05);
            border: 2px solid var(--secondary);
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
        }
        
        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
        }
        
        .price-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .price-header {
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-medium) 100%);
            color: var(--text);
            padding: 25px;
            text-align: center;
            border-bottom: 1px solid rgba(255, 0, 255, 0.2);
        }
        
        .price-header h3 {
            font-size: 26px;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--secondary);
        }
        
        .price {
            font-size: 42px;
            font-weight: bold;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .price-period {
            font-size: 16px;
            color: var(--text-light);
        }
        
        .price-content {
            padding: 30px 20px;
        }
        
        .price-list {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .price-item {
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            color: var(--text-light);
        }
        
        .price-item:last-child {
            border-bottom: none;
        }
        
        .price-item::before {
            content: '✓';
            color: var(--secondary);
            font-weight: bold;
            margin-right: 10px;
        }
        
        .price-btn {
            display: block;
            width: 100%;
            padding: 15px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: var(--text);
            text-align: center;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        
        .price-btn:hover {
            background: linear-gradient(90deg, var(--secondary), var(--primary));
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 0, 255, 0.3);
        }
        
        /* Gallery Section */
        .gallery {
            padding: 80px 0;
            background-color: var(--bg-dark);
            position: relative;
        }
        
        .gallery::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary), var(--primary));
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            height: 250px;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 0, 255, 0.2);
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 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 0%, rgba(0, 0, 0, 0.8) 100%);
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-text {
            color: var(--text);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Feedback Section */
        .feedback {
            padding: 80px 0;
            background-color: var(--bg-medium);
            position: relative;
        }
        
        .feedback::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .feedback-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-item {
            min-width: 100%;
            padding: 30px;
            background-color: var(--bg-light);
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
            text-align: center;
            border: 1px solid rgba(255, 0, 255, 0.2);
        }
        
        .feedback-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--text-light);
            font-size: 18px;
        }
        
        .feedback-author {
            font-weight: bold;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .feedback-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .feedback-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--text-dim);
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .feedback-dot.active {
            background-color: var(--secondary);
        }
        
        /* FAQ Section */
        .faq {
            padding: 80px 0;
            background-color: var(--bg-dark);
            position: relative;
        }
        
        .faq::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary), var(--primary));
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            background-color: var(--bg-medium);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
            border: 1px solid rgba(255, 0, 255, 0.2);
        }
        
        .faq-question {
            padding: 20px;
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-medium) 100%);
            color: var(--text);
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .faq-question:hover {
            background: linear-gradient(135deg, var(--bg-medium) 0%, var(--bg-dark) 100%);
        }
        
        .faq-question::after {
            content: '+';
            font-size: 24px;
            color: var(--secondary);
            transition: all 0.3s ease;
        }
        
        .faq-item.active .faq-question::after {
            content: '-';
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: var(--text-light);
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }
        
        /* Contact Section */
        .contact {
            padding: 80px 0;
            background-color: var(--bg-medium);
            position: relative;
        }
        
        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        .contact-container {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .contact-form {
            background-color: var(--bg-light);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
            border: 1px solid rgba(255, 0, 255, 0.2);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 10px;
            font-weight: bold;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .form-input {
            width: 100%;
            padding: 15px;
            background-color: var(--bg-medium);
            border: 1px solid rgba(255, 0, 255, 0.3);
            border-radius: 5px;
            font-size: 16px;
            color: var(--text);
            transition: all 0.3s ease;
        }
        
        .form-input:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
        }
        
        .form-btn {
            display: block;
            width: 100%;
            padding: 15px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: var(--text);
            border: none;
            border-radius: 30px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .form-btn:hover {
            background: linear-gradient(90deg, var(--secondary), var(--primary));
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 0, 255, 0.3);
        }
        
        /* Footer */
        footer {
            background-color: var(--bg-dark);
            color: var(--text);
            padding: 50px 0 20px;
            border-top: 1px solid rgba(255, 0, 255, 0.2);
        }
        
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .footer-col {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-col h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--secondary);
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-link {
            margin-bottom: 10px;
        }
        
        .footer-link a {
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-link a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            color: var(--text-light);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: var(--text-dim);
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: var(--bg-light);
            padding: 20px;
            border-radius: 5px;
            margin-top: 30px;
            font-size: 14px;
            color: var(--text-light);
            text-align: center;
            border: 1px solid rgba(255, 0, 255, 0.2);
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--bg-medium);
            color: var(--text);
            padding: 20px;
            z-index: 1001;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
            border-top: 1px solid var(--primary);
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 20px;
            color: var(--text-light);
        }
        
        .cookie-text a {
            color: var(--secondary);
            text-decoration: none;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cookie-accept {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: var(--text);
        }
        
        .cookie-accept:hover {
            background: linear-gradient(90deg, var(--secondary), var(--primary));
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(255, 0, 255, 0.3);
        }
        
        .cookie-reject {
            background-color: transparent;
            color: var(--text-light);
            border: 1px solid var(--text-light);
        }
        
        .cookie-reject:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text);
        }
        
        /* Popup */
        .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: 1002;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .popup.show {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background-color: var(--bg-medium);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            max-width: 400px;
            width: 90%;
            transform: scale(0.8);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 0, 255, 0.3);
            box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
        }
        
        .popup.show .popup-content {
            transform: scale(1);
        }
        
        .popup-title {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .popup-text {
            margin-bottom: 20px;
            color: var(--text-light);
        }
        
        .popup-close {
            padding: 12px 25px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: var(--text);
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .popup-close:hover {
            background: linear-gradient(90deg, var(--secondary), var(--primary));
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(255, 0, 255, 0.3);
        }
        
        /* Animations */
        @keyframes glitch {
            0% {
                text-shadow: 0.05em 0 0 var(--secondary), -0.05em -0.025em 0 var(--accent),
                  0.025em 0.05em 0 var(--secondary);
            }
            15% {
                text-shadow: 0.05em 0 0 var(--secondary), -0.05em -0.025em 0 var(--accent),
                  0.025em 0.05em 0 var(--secondary);
            }
            16% {
                text-shadow: -0.05em -0.025em 0 var(--secondary), 0.025em 0.025em 0 var(--accent),
                  -0.05em -0.05em 0 var(--secondary);
            }
            49% {
                text-shadow: -0.05em -0.025em 0 var(--secondary), 0.025em 0.025em 0 var(--accent),
                  -0.05em -0.05em 0 var(--secondary);
            }
            50% {
                text-shadow: 0.025em 0.05em 0 var(--secondary), 0.05em 0 0 var(--accent), 0 -0.05em 0 var(--secondary);
            }
            99% {
                text-shadow: 0.025em 0.05em 0 var(--secondary), 0.05em 0 0 var(--accent), 0 -0.05em 0 var(--secondary);
            }
            100% {
                text-shadow: -0.025em 0 0 var(--secondary), -0.025em -0.025em 0 var(--accent),
                  -0.025em -0.05em 0 var(--secondary);
            }
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 48px;
            }
            
            .hero p {
                font-size: 18px;
            }
        }
        
        @media (max-width: 768px) {
            .nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--bg-dark);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                border-bottom: 1px solid var(--primary);
            }
            
            .nav.show {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .nav-list {
                flex-direction: column;
                align-items: center;
            }
            
            .nav-item {
                margin: 10px 0;
            }
            
            .burger {
                display: flex;
            }
            
            .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(7px, -6px);
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .section-title h2 {
                font-size: 32px;
            }
            
            .price-card.featured {
                transform: scale(1);
            }
            
            .price-card.featured:hover {
                transform: translateY(-10px);
            }
        }

