@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Montserrat:wght@500;700&display=swap');

        :root {
            --primary-bg: #0A1A2A;
            --secondary-bg: #1A2A3A;
            --accent-color: #00FFFF;
            --text-light: #FFFFFF;
            --text-muted: #B0B0B0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-light);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 26, 42, 0.9);
            backdrop-filter: blur(5px);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 20px;
        }

        .logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-color);
            text-decoration: none;
        }

        .nav-links {
            list-style: none;
            display: flex;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--accent-color);
        }

        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-around;
            width: 2rem;
            height: 2rem;
            z-index: 1001;
        }

        .burger div {
            width: 2rem;
            height: 0.2rem;
            background-color: var(--text-light);
            transition: all 0.3s ease;
        }

        .nav-active {
            transform: translateX(0%);
        }

        .toggle .line1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .toggle .line2 {
            opacity: 0;
        }

        .toggle .line3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .button {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--accent-color);
            color: var(--primary-bg);
            text-decoration: none;
            font-weight: 700;
            border-radius: 5px;
            transition: transform 0.3s ease, background-color 0.3s ease;
            text-transform: uppercase;
        }

        .button:hover {
            transform: translateY(-3px);
            background-color: #00E5E5;
        }

        section {
            padding: 100px 0;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
        }

        .hero {
            background: linear-gradient(rgba(10, 26, 42, 0.7), rgba(10, 26, 42, 0.7)), url('../img/11.webp') center/cover no-repeat fixed;
            text-align: center;
            color: var(--text-light);
            padding-top: 150px;
        }

        .hero h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.5rem;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease-in-out;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            animation: fadeInUp 1s ease-in-out 0.5s;
            animation-fill-mode: both;
        }
        
        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 60px;
            color: var(--accent-color);
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: var(--text-light);
            margin: 10px auto 0;
        }

        .about .content {
            display: flex;
            align-items: center;
            gap: 40px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease-out;
        }

        .about img {
            width: 50%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
        }

        .about .text-content {
            width: 50%;
        }

        .about h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .about p {
            font-size: 1rem;
            margin-bottom: 15px;
            color: var(--text-muted);
        }

        .products {
            background-color: var(--secondary-bg);
            text-align: center;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .product-card {
            background-color: var(--primary-bg);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 255, 255, 0.3);
        }

        .product-card h3 {
            font-family: 'Montserrat', sans-serif;
            color: var(--accent-color);
            margin-bottom: 15px;
        }
        
        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .prices {
            text-align: center;
        }

        .prices-grid {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .price-card {
            background-color: var(--secondary-bg);
            padding: 40px;
            border-radius: 10px;
            width: 300px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
        }

        .price-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: var(--accent-color);
        }

        .price-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .price-card .price {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .price-card .price span {
            font-size: 1.2rem;
            font-weight: 400;
            color: var(--text-muted);
        }

        .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
        }

        .price-card li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .gallery {
            background-color: var(--secondary-bg);
            text-align: center;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            opacity: 0;
            transform: scale(0.95);
            transition: all 0.6s ease;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .feedback {
            text-align: center;
        }

        .feedback .container{
            width: 100%;
        }

        .slider-container {
            position: relative;
            overflow: hidden;
            max-width: 800px;
            margin: 0 auto;
        }

        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .feedback-card {
            min-width: 100%;
            background-color: var(--secondary-bg);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .feedback-card img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-bottom: 20px;
            object-fit: cover;
        }

        .feedback-card p {
            font-style: italic;
            margin-bottom: 15px;
        }

        .feedback-card .author {
            font-weight: 700;
            color: var(--accent-color);
        }
        
        .slider-nav {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        
        .slider-nav-dot {
            width: 10px;
            height: 10px;
            background-color: var(--text-muted);
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .slider-nav-dot.active {
            background-color: var(--accent-color);
        }

        .faq {
            background-color: var(--secondary-bg);
        }

        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 0;
            cursor: pointer;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.2rem;
            color: var(--accent-color);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        
        .faq-question.active::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-in-out;
            padding-left: 20px;
            color: var(--text-muted);
        }
        
        .contact-form-container {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }

        .contact-form {
            background-color: var(--secondary-bg);
            padding: 50px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            width: 100%;
            max-width: 600px;
            opacity: 0;
            transform: scale(0.95);
            transition: all 0.6s ease;
        }

        .contact-form h2 {
            text-align: center;
            margin-bottom: 30px;
            color: var(--accent-color);
            font-family: 'Montserrat', sans-serif;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--text-light);
        }

        .form-group input {
            width: 100%;
            padding: 12px;
            background-color: var(--primary-bg);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            color: var(--text-light);
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--accent-color);
        }

        .form-button {
            width: 100%;
            border: none;
            padding: 15px;
            background-color: var(--accent-color);
            color: var(--primary-bg);
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .form-button:hover {
            background-color: #00E5E5;
            transform: translateY(-3px);
        }

        .popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
            z-index: 2000;
            backdrop-filter: blur(5px);
        }

        .popup-content {
            background-color: var(--secondary-bg);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            animation: fadeIn 0.5s ease-in-out;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .popup-content.show {
            transform: scale(1);
        }

        .popup-close {
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 2rem;
            cursor: pointer;
            color: var(--text-muted);
            transition: color 0.3s ease;
        }

        .popup-close:hover {
            color: var(--accent-color);
        }
        
        .popup-content h3 {
            color: var(--accent-color);
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 15px;
        }

        .disclaimer {
            background-color: var(--primary-bg);
            padding: 40px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .disclaimer-content {
            font-size: 0.9rem;
            color: var(--text-muted);
            text-align: center;
        }

        footer {
            background-color: var(--secondary-bg);
            color: var(--text-muted);
            padding: 40px 0 20px;
            text-align: center;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 20px;
            margin-bottom: 20px;
        }

        .footer-logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-color);
            text-decoration: none;
        }
        
        .footer-nav {
            display: flex;
            gap: 20px;
        }
        
        .footer-nav a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: var(--accent-color);
        }

        .footer-contact {
            text-align: left;
        }

        .footer-contact h4 {
            color: var(--text-light);
            margin-bottom: 10px;
        }

        .footer-contact p {
            margin: 5px 0;
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--secondary-bg);
            color: var(--text-light);
            padding: 20px;
            text-align: center;
            z-index: 2000;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-banner a {
            color: var(--accent-color);
            text-decoration: none;
        }

        .cookie-banner-button {
            padding: 10px 20px;
            background-color: var(--accent-color);
            color: var(--primary-bg);
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 700;
            transition: background-color 0.3s ease;
        }

        .cookie-banner-button:hover {
            background-color: #00E5E5;
        }

        .visible{
            opacity: 1 !important;
            transform: translate(0) !important;
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @media screen and (max-width: 768px) {
            .navbar {
                padding: 1rem 15px;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: 0;
                width: 70%;
                height: 100vh;
                background-color: var(--secondary-bg);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transform: translateX(100%);
                transition: transform 0.5s ease-in-out;
            }

            .nav-links a {
                font-size: 1.5rem;
                padding: 1.5rem 0;
            }

            .burger {
                display: flex;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .about .content {
                flex-direction: column;
                text-align: center;
            }

            .about img, .about .text-content {
                width: 100%;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-nav {
                flex-direction: column;
            }
        }

        @media screen and (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .price-card {
                width: 100%;
            }
        }

