* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #0a0e27;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 14, 39, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(255, 42, 109, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #ff2a6d;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .logo:hover {
            color: #05d9e8;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 25px;
        }
        
        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: #05d9e8;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background-color: #ffffff;
            transition: all 0.3s ease-in-out;
        }
        
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-image: url('../img/03.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: linear-gradient(135deg, rgba(10, 14, 39, 0.7) 0%, rgba(255, 42, 109, 0.3) 100%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #ffffff;
            text-shadow: 0 0 10px rgba(5, 217, 232, 0.7);
            animation: glow 2s ease-in-out infinite alternate;
        }
        
        @keyframes glow {
            from {
                text-shadow: 0 0 10px rgba(5, 217, 232, 0.7);
            }
            to {
                text-shadow: 0 0 20px rgba(5, 217, 232, 0.9), 0 0 30px rgba(5, 217, 232, 0.7);
            }
        }
        
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: #d1f7ff;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #ff2a6d;
            color: #ffffff;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        
        .btn:hover {
            background-color: transparent;
            border-color: #ff2a6d;
            color: #ff2a6d;
            box-shadow: 0 0 15px rgba(255, 42, 109, 0.5);
        }
        
        .about {
            padding: 100px 0;
            background-color: #0a0e27;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: #ff2a6d;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .section-title p {
            font-size: 1.2rem;
            color: #cccccc;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #05d9e8;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: #cccccc;
        }
        
        .about-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(255, 42, 109, 0.3);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .products {
            padding: 100px 0;
            background-color: #0f1634;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: #0a0e27;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(5, 217, 232, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 30px rgba(255, 42, 109, 0.4);
        }
        
        .product-image {
            height: 200px;
            overflow: hidden;
        }
        
        .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: 20px;
        }
        
        .product-info h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #05d9e8;
        }
        
        .product-info p {
            color: #cccccc;
            margin-bottom: 20px;
        }
        
        .prices {
            padding: 100px 0;
            background-color: #0a0e27;
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .price-card {
            background-color: #0f1634;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 0 20px rgba(5, 217, 232, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .price-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #ff2a6d, #05d9e8);
        }
        
        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 30px rgba(255, 42, 109, 0.4);
        }
        
        .price-card.featured {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(255, 42, 109, 0.5);
        }
        
        .price-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #ff2a6d;
        }
        
        .price {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #05d9e8;
        }
        
        .price span {
            font-size: 1rem;
            color: #cccccc;
        }
        
        .price-features {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .price-features li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: #cccccc;
        }
        
        .price-features li:last-child {
            border-bottom: none;
        }
        
        .gallery {
            padding: 100px 0;
            background-color: #0f1634;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            box-shadow: 0 0 20px rgba(255, 42, 109, 0.2);
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .gallery-item:hover {
            transform: scale(1.03);
        }
        
        .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(to bottom, rgba(10, 14, 39, 0.1), rgba(10, 14, 39, 0.8));
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay h3 {
            color: #ffffff;
            font-size: 1.5rem;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        }
        
        .feedback {
            padding: 100px 0;
            background-color: #0a0e27;
        }
        
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .feedback-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .feedback-item {
            min-width: 100%;
            padding: 30px;
            background-color: #0f1634;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(5, 217, 232, 0.2);
        }
        
        .feedback-content {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        
        .feedback-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            border: 3px solid #ff2a6d;
        }
        
        .feedback-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .feedback-text {
            flex: 1;
        }
        
        .feedback-text p {
            font-style: italic;
            margin-bottom: 20px;
            color: #cccccc;
            font-size: 1.1rem;
        }
        
        .feedback-author {
            font-weight: bold;
            color: #05d9e8;
        }
        
        .feedback-position {
            color: #ff2a6d;
            font-size: 0.9rem;
        }
        
        .feedback-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .feedback-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #0f1634;
            border: 2px solid #05d9e8;
            color: #05d9e8;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .feedback-btn:hover {
            background-color: #05d9e8;
            color: #0a0e27;
        }
        
        .faq {
            padding: 100px 0;
            background-color: #0f1634;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: #0a0e27;
            border-radius: 10px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(5, 217, 232, 0.2);
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #0a0e27;
            transition: background-color 0.3s;
        }
        
        .faq-question:hover {
            background-color: #0f1634;
        }
        
        .faq-question h3 {
            color: #05d9e8;
            font-size: 1.2rem;
        }
        
        .faq-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: #ff2a6d;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            transition: transform 0.3s;
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background-color: #0f1634;
        }
        
        .faq-answer p {
            padding: 0 20px 20px;
            color: #cccccc;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            transition: max-height 0.5s ease-in;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .contact {
            padding: 100px 0;
            background-color: #0a0e27;
        }
        
        .contact-container {
            display: flex;
            gap: 50px;
            align-items: flex-start;
        }
        
        .contact-form {
            flex: 1;
            background-color: #0f1634;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(5, 217, 232, 0.2);
        }
        
        .contact-form h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #05d9e8;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #cccccc;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: #0a0e27;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            color: #ffffff;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #05d9e8;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #05d9e8;
        }
        
        .contact-details {
            background-color: #0f1634;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(5, 217, 232, 0.2);
        }
        
        .contact-item {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .contact-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #ff2a6d;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .contact-text {
            color: #cccccc;
        }
        
        .contact-text h4 {
            color: #ffffff;
            margin-bottom: 5px;
        }
        
        footer {
            background-color: #0a0e27;
            padding: 50px 0 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #ff2a6d;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #05d9e8;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #cccccc;
            font-size: 0.9rem;
        }
        
        .disclaimer {
            background-color: #0f1634;
            padding: 20px;
            border-radius: 10px;
            margin: 50px auto;
            max-width: 800px;
            text-align: center;
            color: #cccccc;
            font-size: 0.9rem;
            border: 1px solid rgba(255, 42, 109, 0.3);
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #0f1634;
            padding: 20px;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .cookie-banner.active {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            color: #cccccc;
            padding-right: 20px;
        }
        
        .cookie-text a {
            color: #05d9e8;
            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;
        }
        
        .cookie-accept {
            background-color: #ff2a6d;
            color: #ffffff;
        }
        
        .cookie-accept:hover {
            background-color: #e0255f;
        }
        
        .cookie-reject {
            background-color: transparent;
            color: #ffffff;
            border: 1px solid #ffffff;
        }
        
        .cookie-reject:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        .modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background-color: #0f1634;
            padding: 40px;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 0 30px rgba(255, 42, 109, 0.5);
            transform: scale(0.7);
            transition: transform 0.3s;
        }
        
        .modal.active .modal-content {
            transform: scale(1);
        }
        
        .modal-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #05d9e8;
            color: #0a0e27;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 24px;
        }
        
        .modal h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #ff2a6d;
        }
        
        .modal p {
            margin-bottom: 25px;
            color: #cccccc;
        }
        
        .modal-close {
            padding: 10px 25px;
            background-color: #ff2a6d;
            color: #ffffff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .modal-close:hover {
            background-color: #e0255f;
        }
        
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .contact-container {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: #0f1634;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.5s;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .feedback-content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .cookie-banner {
                flex-direction: column;
                gap: 15px;
            }
            
            .cookie-text {
                padding-right: 0;
            }
        }

