@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&family=Montserrat:wght@400;700&display=swap');

        :root {
            --primary-color: #0d1b2a;
            --secondary-color: #1b263b;
            --accent-color: #41e7e4;
            --text-color: #e0e1dd;
            --light-text-color: #f5f5f5;
            --dark-text-color: #0d1b2a;
            --gray-color: #778da9;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Roboto', sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--primary-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            color: var(--accent-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--light-text-color);
        }

        h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            color: var(--light-text-color);
            margin-bottom: 1rem;
        }
        
        h1 { font-size: 2.5rem; }
        h2 { font-size: 2rem; }
        h3 { font-size: 1.5rem; }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        header {
            background-color: var(--primary-color);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--accent-color);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 2rem;
        }

        .nav-menu a {
            font-weight: 700;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--light-text-color);
            transform: scale(1.1);
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-around;
            width: 2rem;
            height: 2rem;
            z-index: 1001;
        }

        .burger-menu div {
            width: 2rem;
            height: 3px;
            background-color: var(--light-text-color);
            transition: all 0.3s ease;
        }

        .nav-active .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
        .nav-active .line2 { opacity: 0; }
        .nav-active .line3 { transform: rotate(45deg) translate(-5px, -6px); }

        main {
            padding-top: 5rem;
        }

        section {
            padding: 4rem 0;
            position: relative;
            z-index: 1;
        }

        section:nth-of-type(odd) {
            background-color: var(--secondary-color);
        }

        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: url('../img/12.webp') no-repeat center center/cover;
            color: var(--light-text-color);
            overflow: hidden;
            background-attachment: fixed;
            animation: hero-fade-in 2s forwards;
        }

        .hero-overlay {
            background-color: rgba(0, 0, 0, 0.6);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            animation: slide-up 1.5s ease-out;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero p {
            font-size: 1.5rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        .btn {
            background-color: var(--accent-color);
            color: var(--dark-text-color);
            padding: 0.8rem 2rem;
            border-radius: 5px;
            font-weight: 700;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .btn:hover {
            background-color: #38c8c6;
            transform: translateY(-3px);
        }

        .about .container,
        .products .container,
        .prices .container,
        .gallery .container,
        .feedback .container,
        .faq .container {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s ease-out, transform 1s ease-out;
        }

        .about .container.visible,
        .products .container.visible,
        .prices .container.visible,
        .gallery .container.visible,
        .feedback .container.visible,
        .faq .container.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .about h2,
        .products h2,
        .prices h2,
        .gallery h2,
        .feedback h2,
        .faq h2 {
            text-align: center;
            margin-bottom: 3rem;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
        }

        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background-color: var(--primary-color);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }

        .product-card h3 {
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        .product-card img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin-bottom: 1rem;
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .price-card {
            background-color: var(--primary-color);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, border-color 0.3s ease;
            border: 2px solid transparent;
        }

        .price-card.featured {
            border-color: var(--accent-color);
            transform: translateY(-15px) scale(1.05);
        }

        .price-card:hover {
            transform: translateY(-10px);
        }

        .price-card h3 {
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        .price-card .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--light-text-color);
            margin-bottom: 1rem;
        }

        .price-card .price span {
            font-size: 1rem;
            color: var(--gray-color);
        }
        
        .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 2rem;
        }
        
        .price-card li {
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .price-card li::before {
            content: '✓';
            color: var(--accent-color);
            position: absolute;
            left: 0;
        }

        .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 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }

        .feedback-slide {
            display: none;
            padding: 2rem;
            text-align: center;
            background-color: var(--primary-color);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            animation: fadeIn 1s ease-out;
        }

        .feedback-slide.active {
            display: block;
        }

        .feedback-slide blockquote {
            font-style: italic;
            margin-bottom: 1rem;
        }

        .feedback-slide .author {
            font-weight: 700;
            color: var(--accent-color);
        }

        .slider-nav {
            text-align: center;
            margin-top: 1rem;
        }

        .slider-dot {
            height: 10px;
            width: 10px;
            margin: 0 5px;
            background-color: var(--gray-color);
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .slider-dot.active {
            background-color: var(--accent-color);
        }

        .faq-item {
            background-color: var(--primary-color);
            border-radius: 10px;
            margin-bottom: 1rem;
            padding: 1.5rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .faq-item:hover {
            background-color: var(--secondary-color);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            color: var(--accent-color);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
            opacity: 0;
            padding-top: 0;
        }

        .faq-answer p {
            padding-top: 1rem;
        }

        .faq-item.active .faq-answer {
            max-height: 200px; /* Adjust as needed */
            opacity: 1;
            padding-top: 1rem;
        }

        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .contact-form-container {
            max-width: 600px;
            margin: 0 auto;
            background-color: var(--secondary-color);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .contact-form h2 {
            text-align: center;
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--accent-color);
        }

        .form-group input {
            width: 100%;
            padding: 0.75rem;
            background-color: var(--primary-color);
            border: 1px solid var(--gray-color);
            border-radius: 5px;
            color: var(--light-text-color);
            transition: border-color 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--accent-color);
        }

        .form-submit-btn {
            display: block;
            width: 100%;
            padding: 0.8rem;
            border: none;
            background-color: var(--accent-color);
            color: var(--dark-text-color);
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .form-submit-btn:hover {
            background-color: #38c8c6;
            transform: translateY(-2px);
        }
        
        .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;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .modal.visible {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background-color: var(--secondary-color);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            transform: scale(0.8);
            transition: transform 0.5s ease;
        }

        .modal.visible .modal-content {
            transform: scale(1);
        }

        .modal-content h3 {
            color: var(--accent-color);
            margin-bottom: 1rem;
        }
        
        .close-btn {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 1.5rem;
            color: var(--light-text-color);
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close-btn:hover {
            color: var(--accent-color);
        }

        .disclaimer {
            text-align: center;
            padding: 2rem 0;
            font-size: 0.9rem;
            color: var(--gray-color);
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--secondary-color);
            color: var(--text-color);
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.5s ease;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-banner-content {
            flex-grow: 1;
        }

        .cookie-banner-content p {
            margin-bottom: 0.5rem;
        }

        .cookie-buttons .btn {
            font-size: 0.9rem;
            padding: 0.5rem 1rem;
            cursor: pointer;
            margin-left: 0.5rem;
        }
        
        footer {
            background-color: var(--primary-color);
            padding: 3rem 0;
            text-align: center;
            border-top: 1px solid var(--secondary-color);
        }

        .footer-content {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 2rem;
            text-align: left;
        }

        .footer-column {
            flex-basis: 300px;
        }

        .footer-column h3 {
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 0.5rem;
        }

        .footer-column a {
            color: var(--gray-color);
        }
        
        .footer-bottom {
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid var(--secondary-color);
            color: var(--gray-color);
        }

        .footer-bottom p {
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes hero-fade-in {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slide-up {
            from {
                transform: translateY(20px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        /* Media Queries */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: 0;
                height: 100vh;
                width: 70%;
                background-color: var(--secondary-color);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transform: translateX(100%);
                transition: transform 0.5s ease-in;
            }

            .nav-menu.nav-active {
                transform: translateX(0);
            }

            .nav-menu li {
                margin: 2rem 0;
            }

            .burger-menu {
                display: flex;
            }

            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.2rem; }
            .about-content { flex-direction: column; }
            .footer-content { flex-direction: column; align-items: center; }
            .footer-column { text-align: center; }
            
            .cookie-banner {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
            }
            .cookie-buttons {
                margin-top: 1rem;
            }
        }

        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
            .hero h1 { font-size: 2rem; }
            .hero p { font-size: 1rem; }
        }

