:root {
            --primary-color: #f7a072;
            --secondary-color: #6457a6;
            --background-color: #f5f5dc;
            --text-color: #1a1a1a;
            --accent-color: #a3c4f3;
            --font-family: 'Times New Roman', Times, serif;
            --header-height: 80px;
        }

        body {
            font-family: var(--font-family);
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background-color: var(--background-color);
            color: var(--text-color);
            scroll-behavior: smooth;
            overflow-x: hidden;
        }
        
        * {
            box-sizing: border-box;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            background-color: var(--background-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 10px 0;
            height: var(--header-height);
            display: flex;
            align-items: center;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        
        .logo {
            font-size: 2em;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            text-transform: uppercase;
        }

        .logo span {
            color: var(--secondary-color);
        }

        nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
        }

        nav a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: bold;
            padding: 10px 15px;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: var(--primary-color);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger-menu div {
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            margin: 4px 0;
            transition: all 0.3s ease;
        }

        .nav-menu.active {
            transform: translateX(0);
        }

        main {
            padding-top: var(--header-height);
        }

        section {
            padding: 80px 0;
            position: relative;
        }

        .hero {
            background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.7)), url('../img/08.webp') no-repeat center center/cover;
            color: #fff;
            text-align: center;
            display: flex;
            align-items: center;
            min-height: 100vh;
        }

        .hero h1 {
            font-size: 3.5em;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            animation: fadeInDown 1s ease-out;
        }
        
        .hero p {
            font-size: 1.5em;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease-out;
        }

        .btn {
            background-color: var(--primary-color);
            color: #fff;
            padding: 15px 30px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        
        .btn:hover {
            background-color: var(--secondary-color);
            transform: scale(1.05);
        }

        .about, .products, .prices, .gallery, .feedback, .faq {
            background-color: #fff;
        }

        .section-title {
            text-align: center;
            font-size: 2.5em;
            margin-bottom: 60px;
            position: relative;
            color: var(--secondary-color);
            animation: slideInLeft 1s ease-out;
        }
        
        .section-title::after {
            content: '';
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
            position: absolute;
            left: 50%;
            bottom: -15px;
            transform: translateX(-50%);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .about-text h2 {
            font-size: 2em;
            color: var(--primary-color);
            animation: fadeIn 1.5s ease;
        }

        .about-text p {
            font-size: 1.1em;
        }
        
        .about-image {
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            animation: zoomIn 1.5s ease;
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image img:hover {
            transform: scale(1.1);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .product-card {
            background-color: var(--background-color);
            padding: 30px;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .product-card h3 {
            color: var(--secondary-color);
            font-size: 1.5em;
        }
        
        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
            margin-bottom: 20px;
        }

        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .price-card {
            background-color: #fff;
            border: 2px solid var(--accent-color);
            border-radius: 10px;
            padding: 40px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .price-card:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }
        
        .price-card h3 {
            color: var(--secondary-color);
            font-size: 1.8em;
            margin-bottom: 10px;
        }

        .price-card .price {
            font-size: 2.5em;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .price-card .price sup {
            font-size: 0.5em;
            vertical-align: top;
        }

        .price-card ul {
            list-style: none;
            padding: 0;
            text-align: left;
            margin-bottom: 30px;
        }

        .price-card li {
            padding: 8px 0;
            border-bottom: 1px dashed #e0e0e0;
        }
        
        .price-card li:last-child {
            border-bottom: none;
        }
        
        .price-card .btn {
            display: inline-block;
            width: 100%;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item img:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }

        .feedback-slider-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }

        .feedback-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .feedback-slide {
            min-width: 100%;
            padding: 20px;
            text-align: center;
            background-color: var(--background-color);
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            align-items: center;
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        
        .feedback-slide.active {
            opacity: 1;
            transform: scale(1);
        }

        .feedback-slide img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 3px solid var(--primary-color);
        }

        .feedback-slide blockquote {
            font-style: italic;
            margin: 0;
            padding: 0 20px;
            color: #555;
        }
        
        .feedback-slide cite {
            display: block;
            margin-top: 15px;
            font-weight: bold;
            color: var(--secondary-color);
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .slider-controls button {
            background: var(--primary-color);
            border: none;
            color: #fff;
            font-size: 1.2em;
            padding: 10px 15px;
            cursor: pointer;
            border-radius: 5px;
            margin: 0 5px;
            transition: background-color 0.3s ease;
        }
        
        .slider-controls button:hover {
            background-color: var(--secondary-color);
        }

        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #ccc;
            padding-bottom: 15px;
        }

        .faq-question {
            cursor: pointer;
            font-weight: bold;
            font-size: 1.2em;
            color: var(--secondary-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5em;
            transition: transform 0.3s ease;
        }

        .faq-question.active::after {
            content: '-';
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding: 0 10px;
        }
        
        .faq-answer.active {
            max-height: 200px; /* Ajustează după nevoie */
        }

        .contact-form-container {
            background-color: var(--primary-color);
            padding: 60px;
            color: #fff;
            border-radius: 10px;
            text-align: center;
        }
        
        .contact-form-container h2 {
            margin-bottom: 30px;
        }

        .contact-form {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 5px;
            font-family: inherit;
        }
        
        .contact-form input:focus, .contact-form textarea:focus {
            outline: 2px solid var(--secondary-color);
        }

        .contact-form .btn {
            background-color: var(--secondary-color);
            cursor: pointer;
            border: none;
        }
        
        .contact-form .btn:hover {
            background-color: var(--background-color);
            color: var(--text-color);
            transform: scale(1);
        }

        .disclaimer {
            background-color: #f0f0f0;
            padding: 20px;
            text-align: center;
            font-size: 0.9em;
            color: #666;
        }
        
        .disclaimer h3 {
            color: #333;
            margin-bottom: 10px;
        }

        footer {
            background-color: var(--secondary-color);
            color: #fff;
            padding: 40px 0;
            text-align: center;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-logo {
            font-size: 1.5em;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .footer-logo span {
            color: #fff;
        }

        .footer-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
        }

        .footer-nav a {
            color: #fff;
            text-decoration: none;
            margin: 0 15px;
            transition: color 0.3s ease;
        }
        
        .footer-nav a:hover {
            color: var(--primary-color);
        }

        .footer-contacts {
            text-align: right;
        }

        .footer-contacts p {
            margin: 5px 0;
        }
        
        .copyright {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 0.9em;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(0, 0, 0, 0.8);
            color: #fff;
            padding: 20px;
            border-radius: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 90%;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        
        .cookie-banner.show {
            opacity: 1;
            visibility: visible;
        }
        
        .cookie-banner a {
            color: var(--primary-color);
            text-decoration: underline;
            margin-left: 5px;
        }

        .cookie-banner button {
            background-color: var(--primary-color);
            color: #fff;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 5px;
            font-weight: bold;
        }
        
        .cookie-banner button:hover {
            background-color: var(--secondary-color);
        }
        
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 3000;
            visibility: hidden;
            opacity: 0;
            transition: visibility 0s, opacity 0.3s ease;
        }
        
        .popup.show {
            visibility: visible;
            opacity: 1;
        }
        
        .popup-content {
            background-color: #fff;
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            position: relative;
            transform: translateY(-20px);
            transition: transform 0.3s ease;
        }
        
        .popup.show .popup-content {
            transform: translateY(0);
        }
        
        .popup-close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 2em;
            cursor: pointer;
            color: #aaa;
        }
        
        .popup-close:hover {
            color: var(--text-color);
        }

        @keyframes fadeInDown {
            0% {
                opacity: 0;
                transform: translateY(-50px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(50px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }

        @keyframes slideInLeft {
            0% {
                opacity: 0;
                transform: translateX(-50px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes zoomIn {
            0% {
                opacity: 0;
                transform: scale(0.9);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                right: 0;
                top: var(--header-height);
                width: 70%;
                height: calc(100vh - var(--header-height));
                background-color: var(--background-color);
                flex-direction: column;
                justify-content: flex-start;
                padding-top: 20px;
                transform: translateX(100%);
                transition: transform 0.5s ease-in-out;
                box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
            }

            .nav-menu li {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid #ddd;
            }
            
            .nav-menu a {
                display: block;
                padding: 20px;
            }

            .burger-menu {
                display: flex;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 20px;
            }
            
            .footer-nav ul {
                flex-direction: column;
            }
        }

