* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        :root {
            --primary: #D32F2F;
            --secondary: #212121;
            --accent: #FFFFFF;
            --highlight: #FFC107;
            --text: #333333;
            --light-bg: #F5F5F5;
        }
        
        body {
            background-color: var(--light-bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--secondary);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--accent);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 25px;
        }
        
        .nav-menu a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            text-transform: uppercase;
            font-size: 14px;
        }
        
        .nav-menu a:hover {
            color: var(--highlight);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: var(--highlight);
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            height: 21px;
        }
        
        .burger span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .burger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        
        main {
            margin-top: 80px;
        }
        
        .hero {
            padding: 100px 0;
            text-align: center;
            background: linear-gradient(rgba(33, 33, 33, 0.8), rgba(33, 33, 33, 0.9)), url(../img/08.webp);
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            animation: fadeInUp 1s ease;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            color: var(--highlight);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--primary);
            color: var(--accent);
            text-decoration: none;
            border-radius: 0;
            font-weight: bold;
            transition: all 0.3s ease;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }
        
        .btn:hover {
            background: var(--highlight);
            color: var(--secondary);
            transform: translateY(-3px);
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 36px;
            margin-bottom: 15px;
            color: var(--secondary);
            position: relative;
            display: inline-block;
            text-transform: uppercase;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--primary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .about {
            background-color: var(--light-bg);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--primary);
            text-transform: uppercase;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .about-image {
            flex: 1;
            text-align: center;
        }
        
        .about-image img {
            max-width: 100%;
            border: 5px solid var(--primary);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .products {
            background-color: var(--secondary);
            color: var(--accent);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background: var(--light-bg);
            border-radius: 0;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid var(--primary);
            color: var(--text);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            margin-bottom: 20px;
            border: 3px solid var(--primary);
        }
        
        .product-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--primary);
            text-transform: uppercase;
        }
        
        .product-card p {
            margin-bottom: 20px;
        }
        
        .prices {
            background-color: var(--light-bg);
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .price-card {
            background: var(--secondary);
            color: var(--accent);
            padding: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 2px solid var(--primary);
            transition: all 0.3s ease;
        }
        
        .price-card.featured {
            transform: scale(1.05);
        }
        
        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .price-card.featured::before {
            content: 'POPULAIRE';
            position: absolute;
            top: 15px;
            right: -30px;
            background: var(--primary);
            color: var(--accent);
            padding: 5px 40px;
            transform: rotate(45deg);
            font-weight: bold;
            font-size: 14px;
            text-transform: uppercase;
        }
        
        .price-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--highlight);
            text-transform: uppercase;
        }
        
        .price {
            font-size: 36px;
            font-weight: bold;
            color: var(--accent);
            margin-bottom: 20px;
        }
        
        .price-card ul {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }
        
        .price-card li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .gallery {
            background-color: var(--secondary);
            color: var(--accent);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border: 3px solid var(--primary);
            height: 250px;
            cursor: pointer;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .feedback {
            background-color: var(--light-bg);
        }
        
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .feedback-item {
            background: var(--secondary);
            color: var(--accent);
            border-radius: 0;
            padding: 30px;
            text-align: center;
            border: 2px solid var(--primary);
        }
        
        .feedback-item img {
            width: 80px;
            height: 80px;
            border-radius: 0;
            margin: 0 auto 20px;
            border: 3px solid var(--primary);
        }
        
        .feedback-item h4 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--highlight);
            text-transform: uppercase;
        }
        
        .feedback-item p {
            font-style: italic;
            margin-bottom: 15px;
        }
        
        .feedback-item .stars {
            color: var(--highlight);
            font-size: 18px;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 15px;
        }
        
        .slider-btn {
            width: 40px;
            height: 40px;
            border-radius: 0;
            background: var(--primary);
            border: none;
            color: var(--accent);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 18px;
        }
        
        .slider-btn:hover {
            background: var(--highlight);
            color: var(--secondary);
        }
        
        .faq {
            background-color: var(--secondary);
            color: var(--accent);
        }
        
        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--light-bg);
            border-radius: 0;
            margin-bottom: 15px;
            overflow: hidden;
            border: 2px solid var(--primary);
            color: var(--text);
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            color: var(--primary);
            text-transform: uppercase;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 24px;
            transition: all 0.3s ease;
        }
        
        .faq-question.active::after {
            content: '-';
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-answer.active {
            padding: 0 20px 20px;
            max-height: 500px;
        }
        
        .contact {
            background-color: var(--light-bg);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: var(--secondary);
            color: var(--accent);
            border-radius: 0;
            padding: 30px;
            border: 2px solid var(--primary);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--highlight);
            font-weight: 500;
            text-transform: uppercase;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background: var(--light-bg);
            border: 2px solid var(--primary);
            border-radius: 0;
            color: var(--text);
            font-size: 16px;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--highlight);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .disclaimer {
            background: var(--secondary);
            color: var(--accent);
            padding: 20px;
            text-align: center;
            font-size: 14px;
            border-top: 3px solid var(--primary);
        }
        
        footer {
            background: var(--secondary);
            color: var(--accent);
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--highlight);
            text-transform: uppercase;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--accent);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: var(--highlight);
            padding-left: 5px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.7);
            font-size: 14px;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--secondary);
            color: var(--accent);
            padding: 20px;
            z-index: 2000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
            transform: translateY(100%);
            transition: transform 0.5s ease;
            border-top: 3px solid var(--primary);
        }
        
        .cookie-banner.active {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            padding-right: 20px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 15px;
        }
        
        .cookie-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 0;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }
        
        .cookie-accept {
            background: var(--primary);
            color: var(--accent);
        }
        
        .cookie-decline {
            background: transparent;
            color: var(--accent);
            border: 2px solid var(--accent);
        }
        
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 3000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background: var(--secondary);
            color: var(--accent);
            border-radius: 0;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            border: 3px solid var(--primary);
            transform: scale(0.7);
            transition: all 0.3s ease;
        }
        
        .modal.active .modal-content {
            transform: scale(1);
        }
        
        .modal-content h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--highlight);
            text-transform: uppercase;
        }
        
        .modal-content p {
            margin-bottom: 30px;
        }
        
        .modal-close {
            background: var(--primary);
            color: var(--accent);
            border: none;
            padding: 10px 20px;
            border-radius: 0;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--secondary);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
            }
            
            .nav-menu.active {
                transform: translateY(0);
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: flex;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .price-card.featured {
                transform: none;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                padding-right: 0;
                margin-bottom: 15px;
            }
        }

