:root {
            --primary: #CC0000;
            --secondary: #FFD700;
            --accent: #003366;
            --dark: #1A1A1A;
            --light: #F5F5F5;
            --gray: #7F7F7F;
        }
        
        * {
            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;
            padding-top: 80px;
        }
        
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        h1 {
            font-size: 2.8rem;
        }
        
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--primary);
            padding-left: 15px;
            margin-bottom: 30px;
        }
        
        h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: var(--light);
            padding: 12px 30px;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .btn:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
        }
        
        .btn-secondary {
            background-color: var(--secondary);
            color: var(--dark);
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            color: var(--light);
            padding: 15px 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 {
            display: flex;
            align-items: center;
        }
        
        .logo h1 {
            font-size: 1.8rem;
            margin: 0;
            color: var(--primary);
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 25px;
        }
        
        .nav-menu a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }
        
        .nav-menu a:hover {
            color: var(--secondary);
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://plus.unsplash.com/premium_photo-1661963650809-082709cfaf0e?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
            color: var(--light);
            padding: 120px 0;
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
        }
        
        /* Sections */
        section {
            padding: 80px 0;
        }
        
        section:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        /* About */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .about-image {
            border: 5px solid var(--primary);
            box-shadow: 10px 10px 0 var(--secondary);
        }
        
        .about-image img {
            width: 100%;
            display: block;
        }
        
        /* Products */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background: var(--light);
            padding: 25px;
            border: 2px solid var(--dark);
            box-shadow: 8px 8px 0 var(--accent);
            transition: all 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 15px 15px 0 var(--accent);
        }
        
        .product-card h3 {
            color: var(--primary);
            border-bottom: 2px solid var(--secondary);
            padding-bottom: 10px;
            margin-bottom: 15px;
        }
        
        /* Prices */
        .prices-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .price-card {
            background: var(--light);
            padding: 30px;
            border: 3px solid var(--primary);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .price-card.featured {
            transform: scale(1.05);
            border-color: var(--secondary);
            z-index: 1;
        }
        
        .price-card h3 {
            color: var(--primary);
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent);
            margin: 20px 0;
        }
        
        .price-features {
            list-style: none;
            margin: 20px 0;
        }
        
        .price-features li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }
        
        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            position: relative;
            border: 3px solid var(--dark);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Feedback */
        .feedback-slider {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }
        
        .feedback-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-slide {
            min-width: 100%;
            padding: 0 15px;
        }
        
        .feedback-card {
            background: var(--light);
            padding: 30px;
            border: 2px solid var(--accent);
            box-shadow: 5px 5px 0 var(--primary);
        }
        
        .feedback-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .feedback-author {
            display: flex;
            align-items: center;
        }
        
        .feedback-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
            border: 2px solid var(--secondary);
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            background: var(--gray);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .slider-dot.active {
            background: var(--primary);
        }
        
        /* FAQ */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 2px solid var(--dark);
        }
        
        .faq-question {
            background: var(--dark);
            color: var(--light);
            padding: 15px 20px;
            cursor: pointer;
            position: relative;
            font-weight: 700;
        }
        
        .faq-question::after {
            content: '+';
            position: absolute;
            right: 20px;
            transition: transform 0.3s ease;
        }
        
        .faq-question.active::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-answer.open {
            padding: 20px;
            max-height: 500px;
        }
        
        /* Contact */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .contact-form {
            background: var(--light);
            padding: 30px;
            border: 3px solid var(--primary);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid var(--dark);
            font-size: 1rem;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
        }
        
        .contact-info {
            padding: 30px;
            background: var(--accent);
            color: var(--light);
        }
        
        .contact-info h3 {
            color: var(--secondary);
        }
        
        .contact-details {
            list-style: none;
            margin-top: 20px;
        }
        
        .contact-details li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .contact-details li i {
            margin-right: 10px;
            color: var(--secondary);
            font-size: 1.2rem;
        }
        
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background: var(--light);
            padding: 40px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            border: 5px solid var(--primary);
            position: relative;
        }
        
        .modal-close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
        }
        
        /* Disclaimer */
        .disclaimer {
            background: var(--dark);
            color: var(--light);
            padding: 20px;
            font-size: 0.9rem;
            text-align: center;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--dark);
            color: var(--light);
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1500;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .cookie-banner p {
            margin: 0;
            flex: 1;
            padding-right: 20px;
        }
        
        .cookie-banner button {
            background: var(--primary);
            color: var(--light);
            border: none;
            padding: 8px 15px;
            cursor: pointer;
            text-transform: uppercase;
            font-weight: 700;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: var(--light);
            padding: 50px 0 20px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-logo h2 {
            color: var(--primary);
            border: none;
            padding: 0;
            margin-bottom: 15px;
        }
        
        .footer-logo span {
            color: var(--secondary);
        }
        
        .footer-links h3,
        .footer-contact h3 {
            color: var(--secondary);
            margin-bottom: 20px;
            border-bottom: 2px solid var(--primary);
            padding-bottom: 10px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: var(--secondary);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--gray);
        }
        
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .nav-menu {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 70%;
                height: calc(100vh - 80px);
                background: var(--dark);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.5s ease;
                z-index: 999;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 20px 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);
            }
        }
        
        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }
            
            .hero {
                padding: 80px 0;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .price-card.featured {
                transform: scale(1);
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-banner p {
                padding-right: 0;
                margin-bottom: 15px;
            }
        }

