:root {
            --primary: #0a192f;
            --secondary: #172a45;
            --accent: #64ffda;
            --accent-dark: #0d7377;
            --text-light: #ccd6f6;
            --text-dark: #8892b0;
            --highlight: #f06292;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--primary);
            color: var(--text-light);
            line-height: 1.6;
            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, 25, 47, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 1px;
        }
        
        .logo span {
            color: var(--highlight);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--accent);
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .burger-menu span {
            width: 25px;
            height: 3px;
            background-color: var(--text-light);
            margin: 3px 0;
            transition: 0.3s;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            z-index: -1;
        }
        
        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        
        .particle {
            position: absolute;
            background-color: var(--accent);
            border-radius: 50%;
            opacity: 0.3;
        }
        
        .hero-content {
            max-width: 800px;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 56px;
            margin-bottom: 20px;
            line-height: 1.2;
            color: var(--text-light);
        }
        
        .hero h1 span {
            color: var(--accent);
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            color: var(--text-dark);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: transparent;
            color: var(--accent);
            border: 2px solid var(--accent);
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: var(--accent);
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(100, 255, 218, 0.2);
        }
        
        .btn-primary {
            background-color: var(--accent);
            color: var(--primary);
        }
        
        .btn-primary:hover {
            background-color: transparent;
            color: var(--accent);
        }
        
        /* Sections */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 40px;
            margin-bottom: 15px;
            color: var(--text-light);
        }
        
        .section-title h2 span {
            color: var(--accent);
        }
        
        .section-title p {
            font-size: 18px;
            color: var(--text-dark);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* About Section */
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--accent);
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: var(--text-dark);
        }
        
        .about-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Offer Section */
        .offer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .offer-card {
            background-color: var(--secondary);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .offer-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }
        
        .offer-card-icon {
            font-size: 40px;
            color: var(--accent);
            margin-bottom: 20px;
        }
        
        .offer-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--text-light);
        }
        
        .offer-card p {
            color: var(--text-dark);
            margin-bottom: 20px;
        }
        
        /* Products Section */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: var(--secondary);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }
        
        .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-content {
            padding: 25px;
        }
        
        .product-content h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--text-light);
        }
        
        .product-price {
            font-size: 24px;
            font-weight: bold;
            color: var(--accent);
            margin-bottom: 15px;
        }
        
        .product-content p {
            color: var(--text-dark);
            margin-bottom: 20px;
        }
        
        /* Why Us Section */
        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .why-us-item {
            text-align: center;
            padding: 30px 20px;
            background-color: var(--secondary);
            border-radius: 10px;
            transition: transform 0.3s;
        }
        
        .why-us-item:hover {
            transform: translateY(-10px);
        }
        
        .why-us-icon {
            font-size: 50px;
            color: var(--accent);
            margin-bottom: 20px;
        }
        
        .why-us-item h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--text-light);
        }
        
        .why-us-item p {
            color: var(--text-dark);
        }
        
        /* Gallery Section */
        .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 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .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 top, rgba(10, 25, 47, 0.8), transparent);
            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: var(--accent);
            font-size: 18px;
        }
        
        /* Testimonials Section */
        .testimonials-container {
            position: relative;
            overflow: hidden;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .testimonials-slider {
            display: flex;
            transition: transform 0.5s;
        }
        
        .testimonial-card {
            min-width: 100%;
            padding: 40px;
            background-color: var(--secondary);
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .testimonial-content {
            font-size: 18px;
            font-style: italic;
            color: var(--text-dark);
            margin-bottom: 30px;
            position: relative;
        }
        
        .testimonial-content::before {
            content: '"';
            font-size: 60px;
            color: var(--accent);
            position: absolute;
            top: -20px;
            left: -20px;
            opacity: 0.3;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: var(--text-dark);
            font-size: 14px;
        }
        
        .testimonial-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--text-dark);
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .testimonial-dot.active {
            background-color: var(--accent);
        }
        
        /* Process Section */
        .process-timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .process-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background-color: var(--accent);
        }
        
        .process-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .process-item:nth-child(odd) {
            flex-direction: row-reverse;
        }
        
        .process-content {
            width: 45%;
            padding: 30px;
            background-color: var(--secondary);
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .process-content h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--accent);
        }
        
        .process-content p {
            color: var(--text-dark);
        }
        
        .process-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            border: 3px solid var(--accent);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--accent);
            font-size: 24px;
            z-index: 2;
        }
        
        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            background-color: var(--secondary);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .faq-question {
            padding: 20px 30px;
            background-color: var(--secondary);
            color: var(--text-light);
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }
        
        .faq-question:hover {
            background-color: rgba(100, 255, 218, 0.1);
        }
        
        .faq-question::after {
            content: '+';
            font-size: 24px;
            color: var(--accent);
            transition: transform 0.3s;
        }
        
        .faq-question.active::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
            padding: 0 30px;
            color: var(--text-dark);
        }
        
        .faq-answer.active {
            max-height: 500px;
            padding: 0 30px 20px;
        }
        
        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .team-member {
            background-color: var(--secondary);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
        }
        
        .team-member:hover {
            transform: translateY(-10px);
        }
        
        .member-image {
            height: 250px;
            overflow: hidden;
        }
        
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .team-member:hover .member-image img {
            transform: scale(1.1);
        }
        
        .member-info {
            padding: 25px;
            text-align: center;
        }
        
        .member-info h3 {
            font-size: 22px;
            margin-bottom: 5px;
            color: var(--text-light);
        }
        
        .member-info p {
            color: var(--accent);
            margin-bottom: 15px;
        }
        
        .member-socials {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .member-socials a {
            width: 35px;
            height: 35px;
            background-color: var(--primary);
            color: var(--text-dark);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: background-color 0.3s, color 0.3s;
        }
        
        .member-socials a:hover {
            background-color: var(--accent);
            color: var(--primary);
        }
        
        /* Marquee */
        .marquee-container {
            background-color: var(--secondary);
            padding: 15px 0;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
        }
        
        .marquee-content {
            display: inline-block;
            animation: marquee 20s linear infinite;
        }
        
        @keyframes marquee {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }
        
        .marquee-item {
            display: inline-block;
            margin: 0 30px;
            color: var(--text-light);
            font-weight: 600;
        }
        
        .marquee-item span {
            color: var(--accent);
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary);
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--accent);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--text-dark);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--accent);
        }
        
        .footer-contact p {
            color: var(--text-dark);
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            text-align: center;
            color: var(--text-dark);
            font-size: 14px;
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: var(--secondary);
            padding: 20px 0;
            text-align: center;
            color: var(--text-dark);
            font-size: 14px;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--secondary);
            padding: 20px;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
            transform: translateY(100%);
            transition: transform 0.3s;
            z-index: 1001;
        }
        
        .cookie-banner.active {
            transform: translateY(0);
        }
        
        .cookie-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .cookie-text {
            flex: 1;
            color: var(--text-light);
        }
        
        .cookie-text a {
            color: var(--accent);
            text-decoration: none;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 15px;
        }
        
        /* Modal */
        .modal {
            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;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
            z-index: 1002;
        }
        
        .modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background-color: var(--secondary);
            border-radius: 10px;
            width: 90%;
            max-width: 600px;
            max-height: 90vh;
            overflow-y: auto;
            transform: scale(0.8);
            transition: transform 0.3s;
        }
        
        .modal.active .modal-content {
            transform: scale(1);
        }
        
        .modal-header {
            padding: 20px 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .modal-header h2 {
            color: var(--accent);
        }
        
        .modal-close {
            width: 30px;
            height: 30px;
            background-color: transparent;
            border: none;
            color: var(--text-light);
            font-size: 24px;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: color 0.3s;
        }
        
        .modal-close:hover {
            color: var(--accent);
        }
        
        .modal-body {
            padding: 30px;
        }
        
        .modal-body h3 {
            color: var(--accent);
            margin-bottom: 15px;
        }
        
        .modal-body p {
            color: var(--text-dark);
            margin-bottom: 20px;
        }
        
        .modal-body ul {
            list-style: none;
            margin-bottom: 20px;
        }
        
        .modal-body ul li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
            color: var(--text-dark);
        }
        
        .modal-body ul li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--accent);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 42px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .process-timeline::before {
                left: 30px;
            }
            
            .process-item {
                flex-direction: column !important;
                align-items: flex-start !important;
            }
            
            .process-content {
                width: calc(100% - 80px);
                margin-left: 80px;
            }
            
            .process-icon {
                left: 30px;
            }
        }
        
        @media (max-width: 768px) {
           nav ul {
                display: none;
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                flex-direction: column;
                top: 68px;
                background-color: #0a192f;
            }
            nav ul.active{
                display: flex;
            }
            
            .burger-menu {
                display: flex;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .section-title h2 {
                font-size: 32px;
            }
            
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 28px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .modal-content {
                width: 95%;
            }
        }

