@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Montserrat:wght@400;700&display=swap');

        :root {
            --primary-color: #f7a916;
            --secondary-color: #3e5a6a;
            --dark-color: #1a1a1a;
            --light-color: #f5f5f5;
            --font-family: 'Montserrat', sans-serif;
            --header-height: 80px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family);
            line-height: 1.6;
            color: var(--dark-color);
            background-color: var(--light-color);
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            background: rgba(26, 26, 26, 0.95);
            color: var(--light-color);
            z-index: 1000;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
        }

        header .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        nav ul {
            list-style: none;
            display: flex;
        }

        nav ul li a {
            color: var(--light-color);
            text-decoration: none;
            font-weight: bold;
            font-size: 1rem;
            margin: 0 15px;
            position: relative;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            display: block;
            margin-top: 5px;
            right: 0;
            background: var(--primary-color);
            transition: width 0.4s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
            left: 0;
            background: var(--primary-color);
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            height: 21px;
            width: 30px;
        }

        .burger-menu div {
            width: 100%;
            height: 3px;
            background-color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .nav-active {
            transform: translateX(0%);
        }

        main {
            padding-top: var(--header-height);
        }

        section {
            padding: 60px 5%;
            text-align: center;
        }

        h1, h2, h3 {
            color: var(--dark-color);
            margin-bottom: 20px;
            font-weight: bold;
        }

        h1 {
            font-size: 3rem;
            color: var(--light-color);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        h2 {
            font-size: 2.5rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }

        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--dark-color);
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s ease, transform 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: var(--secondary-color);
            color: var(--light-color);
            transform: translateY(-3px);
        }

        .hero {
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/08.webp');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--light-color);
            position: relative;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.5rem;
            max-width: 800px;
        }

        .about {
            background-color: var(--light-color);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
            text-align: left;
        }

        .about .text-content, .about .image-content {
            flex: 1;
            min-width: 300px;
        }

        .about .image-content img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .products {
            background-color: var(--secondary-color);
            color: var(--light-color);
        }

        .products h2 {
            color: var(--light-color);
        }

        .products .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .products .product-item {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 10px;
            text-align: left;
            transition: transform 0.3s ease;
        }

        .products .product-item:hover {
            transform: translateY(-10px);
        }

        .products .product-item h3 {
            color: var(--primary-color);
            font-size: 1.5rem;
        }

        .prices {
            background-color: var(--light-color);
        }

        .prices .price-grid {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }

        .prices .price-card {
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            width: 300px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .prices .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }

        .prices .price-card h3 {
            color: var(--secondary-color);
            font-size: 1.8rem;
        }

        .prices .price-card .price {
            font-size: 2.5rem;
            color: var(--primary-color);
            font-weight: bold;
            margin: 20px 0;
        }

        .prices .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 20px;
        }

        .prices .price-card ul li {
            margin: 10px 0;
        }
        .gallery {
            background-color: var(--dark-color);
        }
        .gallery h2 {
            color: var(--light-color);
        }
        .gallery .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 40px;
        }

        .gallery .gallery-grid img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .gallery .gallery-grid img:hover {
            transform: scale(1.05);
        }
        
        .feedback {
            background-color: var(--light-color);
            position: relative;
            overflow: hidden;
        }

        .feedback .slider-container {
            display: flex;
            overflow-x: hidden;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scroll-behavior: smooth;
        }

        .feedback .review-card {
            min-width: 100%;
            scroll-snap-align: start;
            padding: 20px;
            text-align: center;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            margin: 0 10px;
        }

        .feedback .review-card blockquote {
            font-style: italic;
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .feedback .review-card .author {
            font-weight: bold;
            color: var(--primary-color);
        }
        .slider-controls {
            margin-top: 20px;
        }

        .slider-controls button {
            background: var(--primary-color);
            border: none;
            padding: 10px 15px;
            margin: 0 5px;
            cursor: pointer;
            border-radius: 5px;
            transition: background 0.3s;
        }

        .slider-controls button:hover {
            background: var(--secondary-color);
        }

        .faq {
            background-color: var(--secondary-color);
            color: var(--light-color);
            text-align: left;
        }

        .faq h2 {
            color: var(--light-color);
            text-align: center;
        }

        .faq .faq-item {
            margin-bottom: 20px;
        }

        .faq .faq-question {
            background: rgba(255, 255, 255, 0.1);
            padding: 15px;
            cursor: pointer;
            border-radius: 5px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            color: var(--primary-color);
        }

        .faq .faq-answer {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            margin-top: 5px;
            border-radius: 5px;
            display: none;
        }

        .faq .faq-question .toggle-icon {
            transition: transform 0.3s;
        }

        .faq .faq-question.active .toggle-icon {
            transform: rotate(180deg);
        }

        .contact-form {
            background-color: var(--light-color);
            text-align: center;
        }
        
        .contact-form h2 {
            margin-bottom: 40px;
        }
        .contact-form form {
            max-width: 600px;
            margin: 0 auto;
            display: grid;
            gap: 20px;
        }
        .contact-form form input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        .contact-form form button {
            width: 100%;
        }

        .disclaimer {
            padding: 20px 5%;
            background: var(--dark-color);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            text-align: center;
        }
        .disclaimer p {
            margin-bottom: 0;
        }

        footer {
            background-color: var(--dark-color);
            color: var(--light-color);
            padding: 40px 5%;
            text-align: center;
        }

        footer .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        footer .footer-nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        footer .footer-nav ul li a {
            color: var(--light-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        footer .footer-nav ul li a:hover {
            color: var(--primary-color);
        }

        .contact-info p {
            margin: 5px 0;
            color: rgba(255, 255, 255, 0.8);
        }

        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 600px;
            background: var(--secondary-color);
            color: var(--light-color);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            display: none;
            z-index: 2000;
            text-align: center;
        }

        .cookie-banner p {
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .cookie-banner .btn {
            background-color: var(--primary-color);
            color: var(--dark-color);
        }

        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 3000;
        }

        .popup-content {
            background: var(--light-color);
            color: var(--dark-color);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            max-width: 400px;
            position: relative;
        }
        
        .popup-close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 2rem;
            font-weight: bold;
            cursor: pointer;
            color: var(--dark-color);
        }

        .popup-content h3 {
            margin-bottom: 20px;
        }


        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        [data-animation] {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        [data-animation].animate {
            opacity: 1;
            transform: translateY(0);
        }


        @media (max-width: 768px) {
            header {
                height: 60px;
                padding: 0 5%;
            }

            header .logo {
                font-size: 1.5rem;
            }

            nav {
                position: fixed;
                right: 0;
                top: 60px;
                height: 100vh;
                width: 70%;
                background-color: var(--dark-color);
                flex-direction: column;
                transform: translateX(100%);
                transition: transform 0.5s ease-in-out;
                z-index: 999;
                padding-top: 50px;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
            }
            
            nav ul li {
                opacity: 0;
                margin: 20px 0;
            }

            .burger-menu {
                display: flex;
            }

            .nav-active {
                transform: translateX(0%);
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
        }

