* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Rajdhani', 'Segoe UI', sans-serif;
        }
        
        body {
            background-color: #0a0e27;
            color: #e0e0e0;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 14, 39, 0.9);
            backdrop-filter: blur(10px);
            color: #e0e0e0;
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(255, 0, 110, 0.2);
            border-bottom: 1px solid rgba(131, 56, 236, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #e0e0e0;
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
        }
        
        .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #ff006e, #8338ec);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
            position: relative;
        }
        
        nav ul li a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            position: relative;
            padding: 5px 0;
        }
        
        nav ul li a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #ff006e, #8338ec);
            transition: width 0.3s;
        }
        
        nav ul li a:hover {
            color: #06ffa5;
        }
        
        nav ul li a:hover::before {
            width: 100%;
        }
        
        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
        }
        
        .burger-menu span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: #e0e0e0;
            border-radius: 3px;
            transition: all 0.3s;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(10, 14, 39, 0.7), rgba(10, 14, 39, 0.7)), url('../img/11.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            text-align: center;
            color: #e0e0e0;
            padding-top: 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(131, 56, 236, 0.2) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(255, 0, 110, 0.2) 0%, transparent 50%);
            z-index: 1;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease;
        }
        
        .hero h1 {
            font-size: 60px;
            margin-bottom: 20px;
            letter-spacing: 3px;
            text-transform: uppercase;
            background: linear-gradient(90deg, #ff006e, #8338ec);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 30px rgba(131, 56, 236, 0.5);
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            line-height: 1.6;
            color: #e0e0e0;
        }
        
        .btn {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(90deg, #ff006e, #8338ec);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #8338ec, #ff006e);
            z-index: -1;
            transition: all 0.3s;
            opacity: 0;
        }
        
        .btn:hover::before {
            opacity: 1;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(131, 56, 236, 0.3);
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background-color: #0f1632;
            position: relative;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(90deg, rgba(6, 255, 165, 0.05) 1px, transparent 1px),
                linear-gradient(rgba(6, 255, 165, 0.05) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: 1;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 2;
        }
        
        .section-title h2 {
            font-size: 42px;
            color: #e0e0e0;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #ff006e, #8338ec);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
            position: relative;
            z-index: 2;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 28px;
            color: #06ffa5;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .about-text p {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 30px rgba(131, 56, 236, 0.3);
            position: relative;
        }
        
        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 0, 110, 0.2), rgba(131, 56, 236, 0.2));
            z-index: 1;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Products Section */
        .products {
            padding: 100px 0;
            background-color: #0a0e27;
            position: relative;
        }
        
        .products::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(131, 56, 236, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(255, 0, 110, 0.1) 0%, transparent 50%);
            z-index: 1;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        
        .product-card {
            background-color: #0f1632;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s;
            position: relative;
            border: 1px solid rgba(131, 56, 236, 0.2);
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 0, 110, 0.05), rgba(131, 56, 236, 0.05));
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(131, 56, 236, 0.3);
            border-color: rgba(131, 56, 236, 0.5);
        }
        
        .product-card:hover::before {
            opacity: 1;
        }
        
        .product-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .product-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(10, 14, 39, 0.2), rgba(10, 14, 39, 0.8));
            z-index: 1;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 25px;
            position: relative;
            z-index: 2;
        }
        
        .product-info h3 {
            font-size: 24px;
            color: #e0e0e0;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .product-info p {
            font-size: 16px;
            line-height: 1.6;
            color: #a0a0a0;
            margin-bottom: 20px;
        }
        
        /* Prices Section */
        .prices {
            padding: 100px 0;
            background-color: #0f1632;
            position: relative;
        }
        
        .prices::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(90deg, rgba(6, 255, 165, 0.05) 1px, transparent 1px),
                linear-gradient(rgba(6, 255, 165, 0.05) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: 1;
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        
        .price-card {
            background-color: #0a0e27;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(131, 56, 236, 0.2);
        }
        
        .price-card.featured {
            border: 2px solid #ff006e;
            transform: scale(1.05);
        }
        
        .price-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 0, 110, 0.05), rgba(131, 56, 236, 0.05));
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(131, 56, 236, 0.3);
            border-color: rgba(131, 56, 236, 0.5);
        }
        
        .price-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .price-card:hover::before {
            opacity: 1;
        }
        
        .price-card h3 {
            font-size: 24px;
            color: #e0e0e0;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            z-index: 2;
        }
        
        .price {
            font-size: 42px;
            color: #06ffa5;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        
        .price span {
            font-size: 16px;
            color: #a0a0a0;
        }
        
        .price-features {
            list-style: none;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }
        
        .price-features li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(131, 56, 236, 0.2);
            font-size: 16px;
            color: #a0a0a0;
        }
        
        .price-features li:last-child {
            border-bottom: none;
        }
        
        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background-color: #0a0e27;
            position: relative;
        }
        
        .gallery::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(131, 56, 236, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(255, 0, 110, 0.1) 0%, transparent 50%);
            z-index: 1;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            position: relative;
            z-index: 2;
        }
        
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            height: 250px;
            position: relative;
            cursor: pointer;
            border: 1px solid rgba(131, 56, 236, 0.2);
            transition: all 0.3s;
        }
        
        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 30px rgba(131, 56, 236, 0.3);
            border-color: rgba(131, 56, 236, 0.5);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(10, 14, 39, 0.2), rgba(10, 14, 39, 0.8));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay span {
            color: #06ffa5;
            font-size: 18px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Feedback Section */
        .feedback {
            padding: 100px 0;
            background-color: #0f1632;
            position: relative;
        }
        
        .feedback::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(90deg, rgba(6, 255, 165, 0.05) 1px, transparent 1px),
                linear-gradient(rgba(6, 255, 165, 0.05) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: 1;
        }
        
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
            position: relative;
            z-index: 2;
        }
        
        .feedback-track {
            display: flex;
            transition: transform 0.5s;
        }
        
        .feedback-item {
            min-width: 100%;
            padding: 0 20px;
            text-align: center;
        }
        
        .feedback-text {
            font-size: 18px;
            line-height: 1.8;
            font-style: italic;
            color: #a0a0a0;
            margin-bottom: 30px;
            position: relative;
        }
        
        .feedback-text::before {
            content: '"';
            font-size: 60px;
            color: #8338ec;
            position: absolute;
            top: -20px;
            left: -20px;
            opacity: 0.3;
        }
        
        .feedback-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .feedback-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid rgba(131, 56, 236, 0.5);
        }
        
        .feedback-author-info h4 {
            font-size: 18px;
            color: #e0e0e0;
            margin-bottom: 5px;
        }
        
        .feedback-author-info p {
            font-size: 14px;
            color: #a0a0a0;
        }
        
        .feedback-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            position: relative;
            z-index: 2;
        }
        
        .feedback-control {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgba(131, 56, 236, 0.2);
            color: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            border: 1px solid rgba(131, 56, 236, 0.3);
        }
        
        .feedback-control:hover {
            background-color: rgba(131, 56, 236, 0.4);
            border-color: rgba(131, 56, 236, 0.6);
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background-color: #0a0e27;
            position: relative;
        }
        
        .faq::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(131, 56, 236, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(255, 0, 110, 0.1) 0%, transparent 50%);
            z-index: 1;
        }
        
        .faq-items {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .faq-item {
            background-color: #0f1632;
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(131, 56, 236, 0.2);
            transition: all 0.3s;
        }
        
        .faq-item:hover {
            border-color: rgba(131, 56, 236, 0.4);
        }
        
        .faq-question {
            padding: 20px;
            font-size: 18px;
            color: #e0e0e0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
            position: relative;
        }
        
        .faq-question::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #ff006e, #8338ec);
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .faq-item:hover .faq-question::before {
            opacity: 1;
        }
        
        .faq-question:hover {
            background-color: rgba(131, 56, 236, 0.1);
        }
        
        .faq-question::after {
            content: '+';
            font-size: 24px;
            color: #ff006e;
            transition: transform 0.3s;
        }
        
        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 20px 20px;
        }
        
        .faq-answer p {
            font-size: 16px;
            line-height: 1.6;
            color: #a0a0a0;
        }
        
        /* Contact Section */
        .contact {
            padding: 100px 0;
            background-color: #0f1632;
            position: relative;
        }
        
        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(90deg, rgba(6, 255, 165, 0.05) 1px, transparent 1px),
                linear-gradient(rgba(6, 255, 165, 0.05) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: 1;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: #0a0e27;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(131, 56, 236, 0.2);
            position: relative;
            z-index: 2;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #06ffa5;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid rgba(131, 56, 236, 0.3);
            border-radius: 5px;
            font-size: 16px;
            background-color: rgba(15, 22, 50, 0.5);
            color: #e0e0e0;
            transition: all 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #8338ec;
            box-shadow: 0 0 10px rgba(131, 56, 236, 0.2);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .btn-submit {
            width: 100%;
            padding: 15px;
            font-size: 18px;
            margin-top: 10px;
        }
        
        /* Footer */
        footer {
            background-color: #0a0e27;
            color: #e0e0e0;
            padding: 50px 0 20px;
            border-top: 1px solid rgba(131, 56, 236, 0.2);
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(131, 56, 236, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(255, 0, 110, 0.1) 0%, transparent 50%);
            z-index: 1;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #06ffa5;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, #ff006e, #8338ec);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #e0e0e0;
            text-decoration: none;
            transition: all 0.3s;
            position: relative;
            padding-left: 15px;
        }
        
        .footer-column ul li a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 5px;
            background-color: #8338ec;
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: #06ffa5;
            padding-left: 20px;
        }
        
        .footer-column ul li a:hover::before {
            background-color: #06ffa5;
            width: 8px;
            height: 8px;
        }
        
        .footer-column p {
            margin-bottom: 10px;
            line-height: 1.6;
            color: #a0a0a0;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(131, 56, 236, 0.2);
            font-size: 14px;
            color: #a0a0a0;
            position: relative;
            z-index: 2;
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: rgba(15, 22, 50, 0.5);
            padding: 20px;
            border-radius: 10px;
            margin: 50px 0;
            text-align: center;
            font-size: 14px;
            color: #a0a0a0;
            line-height: 1.6;
            border: 1px solid rgba(131, 56, 236, 0.2);
            position: relative;
            z-index: 2;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: rgba(15, 22, 50, 0.9);
            backdrop-filter: blur(10px);
            color: #e0e0e0;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(150%);
            transition: transform 0.5s;
            border: 1px solid rgba(131, 56, 236, 0.3);
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 20px;
        }
        
        .cookie-text p {
            margin-bottom: 0;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .cookie-text a {
            color: #06ffa5;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .cookie-text a:hover {
            color: #8338ec;
            text-decoration: underline;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 16px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cookie-accept {
            background: linear-gradient(90deg, #ff006e, #8338ec);
            color: white;
        }
        
        .cookie-accept:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(131, 56, 236, 0.3);
        }
        
        .cookie-decline {
            background-color: transparent;
            color: #e0e0e0;
            border: 1px solid rgba(131, 56, 236, 0.3);
        }
        
        .cookie-decline:hover {
            background-color: rgba(131, 56, 236, 0.2);
            border-color: rgba(131, 56, 236, 0.5);
        }
        
        /* Popup */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(10, 14, 39, 0.8);
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        
        .popup-overlay.show {
            opacity: 1;
            visibility: visible;
        }
        
        .popup {
            background-color: #0f1632;
            padding: 40px;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            transform: scale(0.8);
            transition: transform 0.3s;
            border: 1px solid rgba(131, 56, 236, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        
        .popup-overlay.show .popup {
            transform: scale(1);
        }
        
        .popup h3 {
            font-size: 24px;
            color: #06ffa5;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .popup p {
            font-size: 16px;
            line-height: 1.6;
            color: #a0a0a0;
            margin-bottom: 30px;
        }
        
        .popup-close {
            background: linear-gradient(90deg, #ff006e, #8338ec);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .popup-close:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(131, 56, 236, 0.3);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                margin-top: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 42px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(10, 14, 39, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s;
                z-index: 999;
                border-top: 1px solid rgba(131, 56, 236, 0.3);
            }
            
            nav ul.show {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .burger-menu {
                display: flex;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .section-title h2 {
                font-size: 32px;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .price-card.featured {
                transform: scale(1);
            }
            
            .price-card.featured:hover {
                transform: translateY(-10px);
            }
            
            .feedback-author {
                flex-direction: column;
            }
            
            .feedback-author img {
                margin-bottom: 10px;
            }
        }

