@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
        
        :root {
            --primary-color: #00eaff; /* Cyan */
            --secondary-color: #3b82f6; /* Albastru electric */
            --dark-background: #111827; /* Negru inchis */
            --light-text: #e5e7eb; /* Gri deschis */
            --font-family: 'Roboto', sans-serif;
            --header-height: 80px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: all 0.3s ease;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--dark-background);
            color: var(--light-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* --- Global styles --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            background-color: var(--secondary-color);
            color: var(--dark-background);
            border: 2px solid var(--secondary-color);
        }

        .btn:hover {
            background-color: transparent;
            color: var(--secondary-color);
        }

        h1, h2, h3 {
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-color);
            text-transform: uppercase;
        }

        h1 { font-size: 3rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 1.8rem; }

        section {
            padding: 8rem 0;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Header & Navigation --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            background-color: rgba(17, 24, 39, 0.9);
            backdrop-filter: blur(5px);
            z-index: 1000;
            display: flex;
            align-items: center;
            padding: 0 2rem;
            border-bottom: 1px solid var(--secondary-color);
        }

        header .container{
            display: flex;
            align-items:center;
            justify-content: space-between  ;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
            letter-spacing: 2px;
        }

        nav {
            margin-left: auto;
        }

        .nav-list {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-list a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 400;
            text-transform: uppercase;
            position: relative;
        }

        .nav-list a:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary-color);
            visibility: hidden;
            transform: scaleX(0);
            transition: all 0.3s ease-in-out 0s;
        }

        .nav-list a:hover:before {
            visibility: visible;
            transform: scaleX(1);
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .burger-menu span {
            width: 25px;
            height: 3px;
            background-color: var(--primary-color);
        }

        /* --- Hero Section --- */
        .hero {
            padding-top: calc(var(--header-height) + 4rem);
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: url('../img/08.webp') no-repeat center center/cover;
            position: relative;
            z-index: 1;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(17, 24, 39, 0.7);
            z-index: -1;
        }

        .hero-content {
            text-align: center;
        }

        .hero-content h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }

        .hero-content p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        /* --- About Section --- */
        .about-content {
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .about-image {
            flex: 1;
            transform: rotate(-5deg);
        }

        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 234, 255, 0.3);
        }
        
        .about-text {
            flex: 2;
        }

        /* --- Product Description --- */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background-color: #1f2937;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            border: 1px solid var(--secondary-color);
        }

        .product-card h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        /* --- Prices Section --- */
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .price-card {
            background-color: #1f2937;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            border: 1px solid var(--primary-color);
            position: relative;
            overflow: hidden;
        }

        .price-card:before {
            content: '';
            position: absolute;
            top: -50px;
            left: -50px;
            width: 100px;
            height: 100px;
            background-color: var(--primary-color);
            transform: rotate(45deg);
            opacity: 0.1;
        }

        .price-card h3 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .price-card .price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--secondary-color);
        }
        
        .price-card .price small {
            font-size: 1.5rem;
            color: var(--light-text);
        }
        
        .price-card ul {
            list-style: none;
            text-align: left;
            margin: 2rem 0;
        }

        .price-card li {
            margin-bottom: 1rem;
            border-bottom: 1px dashed var(--light-text);
            padding-bottom: 0.5rem;
        }

        .price-card li:last-child {
            border: none;
        }

        /* --- Gallery Section --- */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 234, 255, 0.2);
            position: relative;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: grayscale(100%);
            transition: filter 0.5s ease;
        }

        .gallery-item:hover img {
            filter: grayscale(0%);
        }

        /* --- Feedback Section --- */
        .feedback-slider {
            position: relative;
            overflow: hidden;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .feedback-card {
            min-width: 100%;
            background-color: #1f2937;
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid var(--secondary-color);
            margin: 0 1rem;
            text-align: center;
        }

        .feedback-card p {
            font-style: italic;
            margin-bottom: 1rem;
        }

        .feedback-card .author {
            font-weight: 700;
            color: var(--primary-color);
        }

        .slider-nav button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(17, 24, 39, 0.7);
            border: none;
            color: var(--primary-color);
            font-size: 2rem;
            cursor: pointer;
            padding: 1rem;
            z-index: 10;
        }

        .slider-nav .prev {
            left: 0;
        }

        .slider-nav .next {
            right: 0;
        }

        /* --- FAQ Section --- */
        .faq-item {
            border-bottom: 1px solid var(--secondary-color);
            padding: 1.5rem 0;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 700;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            padding-top: 0;
            transition: max-height 0.5s ease-out, padding-top 0.5s ease-out;
        }
        
        .faq-answer.visible {
            max-height: 200px; /* Ajustează în funcție de conținut */
            padding-top: 1rem;
        }

        /* --- Contact Form --- */
        #contact {
            background-color: #1f2937;
        }
        
        .contact-form-container {
            display: flex;
            justify-content: center;
        }
        
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 600px;
            width: 100%;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 1rem;
            background-color: var(--dark-background);
            border: 1px solid var(--secondary-color);
            color: var(--light-text);
            border-radius: 5px;
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: #6b7280;
        }

        .contact-form button {
            background-color: var(--primary-color);
            color: var(--dark-background);
            border: none;
            padding: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            border-radius: 5px;
        }

        .contact-form button:hover {
            background-color: var(--secondary-color);
        }

        /* --- Popup & Modal --- */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background-color: var(--dark-background);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid var(--primary-color);
            text-align: center;
            width: 90%;
            max-width: 400px;
            position: relative;
        }
        
        .close-modal {
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 2rem;
            font-weight: 700;
            cursor: pointer;
            color: var(--primary-color);
        }

        /* --- Disclaimer & Footer --- */
        .disclaimer {
            background-color: #1f2937;
            padding: 2rem 0;
            text-align: center;
            font-size: 0.9rem;
            color: #9ca3af;
        }
        
        footer {
            background-color: #000000;
            padding: 2rem 0;
            border-top: 1px solid var(--primary-color);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .footer-links a, .footer-contact a {
            color: var(--light-text);
            text-decoration: none;
        }
        
        .footer-links {
            list-style: none;
            display: flex;
            gap: 1.5rem;
        }
        
        /* --- Cookie Banner --- */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(17, 24, 39, 0.95);
            backdrop-filter: blur(5px);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid var(--primary-color);
            z-index: 1500;
        }
        
        .cookie-banner a {
            color: var(--primary-color);
            text-decoration: underline;
        }
        
        .cookie-banner-text {
            flex-grow: 1;
        }

        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }
        
        .cookie-accept {
            background-color: var(--primary-color);
            color: var(--dark-background);
            border: none;
            padding: 0.5rem 1rem;
            cursor: pointer;
            border-radius: 5px;
            font-weight: 700;
        }
        
        .cookie-decline {
            background-color: transparent;
            color: var(--light-text);
            border: 1px solid var(--light-text);
            padding: 0.5rem 1rem;
            cursor: pointer;
            border-radius: 5px;
        }

        /* --- Media Queries --- */
        @media (max-width: 768px) {
            .nav-list {
                display: none;
                flex-direction: column;
                position: absolute;
                top: var(--header-height);
                left: 0;
                width: 100%;
                background-color: rgba(17, 24, 39, 0.95);
                border-top: 1px solid var(--secondary-color);
                text-align: center;
                padding: 2rem 0;
            }

            .nav-list.active {
                display: flex;
            }

            .nav-list a {
                display: block;
                padding: 1rem 0;
            }

            .burger-menu {
                display: flex;
            }

            .hero-content h1 {
                font-size: 2.5em;
            }
            
            .about-content {
                flex-direction: column;
                text-align: center;
            }
            
            .prices-grid {
                grid-template-columns: 1fr;
            }
            
            .feedback-card {
                margin: 0;
            }

            .footer-content {
                flex-direction: column;
                gap: 1.5rem;
            }
        }

