:root {
            --primary: #e31837;
            --secondary: #2f2f2f;
            --accent: #ffd100;
            --light: #f5f5f5;
            --dark: #121212;
            --gray: #7a7a7a;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', Arial, sans-serif;
        }
        
        body {background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;}
        
        main {
            max-width: 1000px;
            margin: 0 auto;
            background-color: white;
            padding: 3rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
        }
        
        h1, h2, h3 {
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 4px solid var(--primary);
        }
        
        h2 {
            font-size: 1.8rem;
            margin-top: 2.5rem;
            color: var(--primary);
        }
        
        h3 {
            font-size: 1.3rem;
            margin-top: 2rem;
        }
        
        p, ul, ol {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        ul, ol {
            padding-left: 2rem;
        }
        
        li {
            margin-bottom: 0.5rem;
        }
        
        .last-updated {
            font-style: italic;
            color: var(--gray);
            margin-bottom: 2rem;
        }
        
        @media screen and (max-width: 768px) {
            body {}
            
            main {
                padding: 2rem 1.5rem;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
        }
:root {
            --primary: #e31837;
            --secondary: #2f2f2f;
            --accent: #ffd100;
            --light: #f5f5f5;
            --dark: #121212;
            --gray: #7a7a7a;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', Arial, sans-serif;
        }
        
        body {background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;}
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--primary);
            color: var(--light);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 2rem;
        }
        
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--accent);
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        /* Main content */
        main {
            margin-top: 80px;
        }
        
        section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        h1, h2, h3 {
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }
        
        h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            letter-spacing: 1px;
        }
        
        h2 {
            font-size: 2.5rem;
            position: relative;
            padding-bottom: 1rem;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100px;
            height: 4px;
            background-color: var(--primary);
        }
        
        h3 {
            font-size: 1.8rem;
            margin-top: 2rem;
        }
        
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        /* Hero Section */
        .hero {
            min-height: 80vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.pexels.com/photos/6295784/pexels-photo-6295784.jpeg?_gl=1*az61kh*_ga*MTczODg1NDUxNi4xNzU0ODQ0MzY5*_ga_8JE65Q40S6*czE3NTcwOTk3OTgkbzIkZzEkdDE3NTcxMDAwNjMkajU5JGwwJGgw') no-repeat center center/cover;
            color: var(--light);
            text-align: center;
            padding: 2rem;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            color: var(--light);
            font-size: 4rem;
            margin-bottom: 2rem;
        }
        
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: var(--light);
            padding: 1rem 2.5rem;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 1rem;
        }
        
        .btn:hover {
            background-color: var(--accent);
            color: var(--dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* About Section */
        .about {
            background-color: var(--light);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }
        
        .about-item {
            text-align: center;
            padding: 2rem;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .about-item:hover {
            transform: translateY(-10px);
        }
        
        .about-item img {
            width: 80px;
            height: 80px;
            margin-bottom: 1.5rem;
        }
        
        /* Products Section */
        .products {
            background-color: var(--secondary);
            color: var(--light);
        }
        
        .products h2 {
            color: var(--light);
        }
        
        .products h2:after {
            background-color: var(--accent);
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .product-card {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 5px;
            text-align: center;
            transition: transform 0.3s;
        }
        
        .product-card:hover {
            transform: scale(1.05);
        }
        
        .product-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            margin-bottom: 1.5rem;
            border-radius: 5px;
        }
        
        /* Prices Section */
        .prices {
            background-color: var(--light);
        }
        
        .price-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .price-card {
            background-color: white;
            padding: 1.5rem;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .price-card.featured {
            border: 3px solid var(--primary);
            transform: scale(1.05);
        }
        
        .price-card h3 {
            margin-top: 0;
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin: 1.5rem 0;
        }
        
        .price-old {
            text-decoration: line-through;
            color: var(--gray);
            font-size: 1.5rem;
        }
        
        .price-feature {
            margin: 1rem 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Gallery Section */
        .gallery {
            background-color: var(--secondary);
            color: var(--light);
        }
        
        .gallery h2 {
            color: var(--light);
        }
        
        .gallery h2:after {
            background-color: var(--accent);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 3rem;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 5px;
            position: relative;
            cursor: pointer;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Feedback Section */
        .feedback {
            background-color: var(--light);
        }
        
        .slider {
            position: relative;
            max-width: 800px;
            margin: 3rem auto 0;
            overflow: hidden;
        }
        
        .slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .slide {
            min-width: 100%;
            padding: 2rem;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
        }
        
        .slide-content {
            text-align: center;
        }
        
        .client-info {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 1.5rem;
        }
        
        .client-info img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 1rem;
            object-fit: cover;
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            background-color: var(--gray);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .slider-dot.active {
            background-color: var(--primary);
        }
        
        /* FAQ Section */
        .faq {
            background-color: var(--secondary);
            color: var(--light);
        }
        
        .faq h2 {
            color: var(--light);
        }
        
        .faq h2:after {
            background-color: var(--accent);
        }
        
        .faq-item {
            margin-bottom: 1.5rem;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
        }
        
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 1.5rem 1.5rem;
        }
        
        /* Contact Section */
        .contact {
            background-color: var(--light);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 3rem auto 0;
            background-color: white;
            padding: 2rem;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: var(--dark);
            color: var(--light);
            padding: 2rem;
            font-size: 0.9rem;
            text-align: center;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            color: var(--light);
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.5s;
        }
        
        .cookie-banner.active {
            transform: translateY(0);
        }
        
        .cookie-banner p {
            margin-bottom: 0;
            margin-right: 2rem;
        }
        
        .cookie-btn {
            background-color: var(--primary);
            color: var(--light);
            border: none;
            padding: 0.5rem 1.5rem;
            cursor: pointer;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary);
            color: var(--light);
            padding: 3rem 2rem;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .footer-section h3 {
            color: var(--light);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        
        .footer-section p {
            margin-bottom: 1rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        
        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--accent);
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Modal */
        .modal {
            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: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        .modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background-color: white;
            padding: 3rem;
            border-radius: 5px;
            text-align: center;
            max-width: 500px;
            width: 90%;
        }
        
        .modal h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        
        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
        }
        
        /* Responsive */
        @media screen and (max-width: 768px) {
            body {overflow-x: hidden;}
            
            .nav-links {
                position: absolute;
                right: 0;
                top: 80px;
                background-color: var(--primary);
                height: calc(100vh - 80px);
                width: 100%;
                flex-direction: column;
                align-items: center;
                justify-content: space-around;
                transform: translateX(100%);
                transition: transform 0.5s ease-in;
                z-index: 999;
            }
            
            .nav-links.active {
                transform: translateX(0);
            }
            
            .nav-links li {
                margin-left: 0;
                opacity: 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .price-card.featured {
                transform: scale(1);
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-banner p {
                margin-right: 0;
                margin-bottom: 1rem;
            }
        }
        
        /* Animation */
        @keyframes navLinkFade {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s, transform 0.5s;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

