* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-color: #e60000;
            --secondary-color: #000000;
            --accent-color: #ffffff;
            --dark-color: #333333;
            --light-color: #f5f5f5;
            --text-color: #ffffff;
            --bg-color: #1a1a1a;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 3px solid var(--primary-color);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 32px;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Arial Black', sans-serif;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 25px;
        }
        
        .nav-menu a {
            color: var(--accent-color);
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
            text-transform: uppercase;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: var(--primary-color);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--accent-color);
            margin: 3px 0;
            transition: 0.3s;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('../img/17.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(230, 0, 0, 0.3) 0%, transparent 70%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
        }
        
        .hero h1 {
            font-size: 56px;
            margin-bottom: 20px;
            color: var(--primary-color);
            text-transform: uppercase;
            line-height: 1.2;
            font-family: 'Arial Black', sans-serif;
            letter-spacing: 2px;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            color: var(--accent-color);
            font-weight: bold;
        }
        
        .btn {
            display: inline-block;
            padding: 15px 35px;
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
            border-radius: 0;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 0 0 3px var(--primary-color);
        }
        
        .btn:hover {
            background-color: transparent;
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background-color: var(--secondary-color);
            position: relative;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: url('../img/08.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.3;
            z-index: 0;
        }
        
        .about-container {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
        }
        
        .about-content {
            flex: 1;
            padding-right: 50px;
        }
        
        .about-image {
            flex: 1;
            text-align: right;
        }
        
        .about-image img {
            max-width: 100%;
            border: 5px solid var(--primary-color);
            transform: rotate(2deg);
        }
        
        .about h2 {
            font-size: 42px;
            margin-bottom: 20px;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
            text-transform: uppercase;
            font-family: 'Arial Black', sans-serif;
        }
        
        .about h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .about p {
            margin-bottom: 20px;
            font-size: 18px;
            color: var(--light-color);
        }
        
        /* Products Section */
        .products {
            padding: 100px 0;
            background-color: #222222;
            position: relative;
        }
        
        .products::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(230, 0, 0, 0.1) 0%, transparent 70%);
            z-index: 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 42px;
            margin-bottom: 50px;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
            width: 100%;
            text-transform: uppercase;
            font-family: 'Arial Black', sans-serif;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .products-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            position: relative;
            z-index: 1;
        }
        
        .product-card {
            width: 30%;
            background-color: var(--secondary-color);
            border: 2px solid var(--primary-color);
            padding: 30px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            transform: rotate(-1deg);
        }
        
        .product-card:hover {
            transform: rotate(0) scale(1.03);
            box-shadow: 0 0 20px rgba(230, 0, 0, 0.5);
        }
        
        .product-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--primary-color);
            text-transform: uppercase;
        }
        
        .product-card p {
            margin-bottom: 20px;
            color: var(--light-color);
        }
        
        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border: 3px solid var(--primary-color);
            margin-bottom: 20px;
        }
        
        /* Prices Section */
        .prices {
            padding: 100px 0;
            background-color: var(--secondary-color);
            position: relative;
        }
        
        .prices::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url('../img/20.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 0;
        }
        
        .prices-container {
            display: flex;
            justify-content: space-between;
            position: relative;
            z-index: 1;
        }
        
        .price-card {
            width: 30%;
            background-color: #222222;
            border: 2px solid var(--primary-color);
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            transform: rotate(1deg);
        }
        
        .price-card:hover {
            transform: rotate(0) scale(1.03);
            box-shadow: 0 0 20px rgba(230, 0, 0, 0.5);
        }
        
        .price-card.featured {
            transform: scale(1.05) rotate(0);
            border-width: 3px;
        }
        
        .price-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--primary-color);
            text-transform: uppercase;
        }
        
        .price {
            font-size: 48px;
            font-weight: bold;
            color: var(--primary-color);
            margin: 20px 0;
        }
        
        .price-card ul {
            list-style: none;
            margin: 30px 0;
            text-align: left;
        }
        
        .price-card li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
            color: var(--light-color);
        }
        
        .price-card li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }
        
        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background-color: #222222;
            position: relative;
        }
        
        .gallery::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(230, 0, 0, 0.1) 0%, transparent 70%);
            z-index: 0;
        }
        
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-gap: 20px;
            position: relative;
            z-index: 1;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            position: relative;
            border: 3px solid var(--primary-color);
            transition: all 0.3s ease;
            transform: rotate(-1deg);
        }
        
        .gallery-item:nth-child(even) {
            transform: rotate(1deg);
        }
        
        .gallery-item:hover {
            transform: rotate(0) scale(1.03);
            box-shadow: 0 0 20px rgba(230, 0, 0, 0.5);
            z-index: 10;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Feedback Section */
        .feedback {
            padding: 100px 0;
            background-color: var(--secondary-color);
            position: relative;
        }
        
        .feedback::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url('../img/10.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 0;
        }
        
        .feedback-slider {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .feedback-item {
            background-color: #222222;
            border: 2px solid var(--primary-color);
            padding: 30px;
            margin: 20px;
            transition: all 0.3s ease;
            transform: rotate(-1deg);
        }
        
        .feedback-item:hover {
            transform: rotate(0);
            box-shadow: 0 0 20px rgba(230, 0, 0, 0.5);
        }
        
        .feedback-text {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 18px;
            color: var(--light-color);
        }
        
        .feedback-author {
            display: flex;
            align-items: center;
        }
        
        .feedback-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
            border: 2px solid var(--primary-color);
        }
        
        .feedback-author-info h4 {
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .feedback-author-info p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background-color: #222222;
            position: relative;
        }
        
        .faq::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(230, 0, 0, 0.1) 0%, transparent 70%);
            z-index: 0;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .faq-item {
            background-color: var(--secondary-color);
            border: 2px solid var(--primary-color);
            margin-bottom: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            box-shadow: 0 0 15px rgba(230, 0, 0, 0.3);
        }
        
        .faq-question {
            padding: 20px;
            background-color: rgba(230, 0, 0, 0.1);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: rgba(230, 0, 0, 0.2);
        }
        
        .faq-question h3 {
            color: var(--primary-color);
            font-size: 18px;
            text-transform: uppercase;
        }
        
        .faq-icon {
            font-size: 20px;
            color: var(--primary-color);
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: var(--light-color);
        }
        
        .faq-answer.active {
            padding: 20px;
            max-height: 500px;
        }
        
        .faq-icon.active {
            transform: rotate(180deg);
        }
        
        /* Contact Form */
        .contact {
            padding: 100px 0;
            background-color: var(--secondary-color);
            position: relative;
        }
        
        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url('../img/09.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 0;
        }
        
        .contact-container {
            display: flex;
            justify-content: space-between;
            position: relative;
            z-index: 1;
        }
        
        .contact-form {
            width: 60%;
            background-color: #222222;
            border: 2px solid var(--primary-color);
            padding: 40px;
            transition: all 0.3s ease;
        }
        
        .contact-form:hover {
            box-shadow: 0 0 30px rgba(230, 0, 0, 0.3);
        }
        
        .contact-info {
            width: 35%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .contact-info h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--primary-color);
            text-transform: uppercase;
        }
        
        .contact-info p {
            margin-bottom: 15px;
            font-size: 18px;
            color: var(--light-color);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--primary-color);
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background-color: var(--secondary-color);
            border: 2px solid var(--primary-color);
            color: white;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 10px rgba(230, 0, 0, 0.3);
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary-color);
            padding: 50px 0 20px;
            border-top: 3px solid var(--primary-color);
        }
        
        .footer-container {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .footer-logo {
            width: 30%;
        }
        
        .footer-logo h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--primary-color);
            text-transform: uppercase;
        }
        
        .footer-logo p {
            margin-bottom: 10px;
            color: var(--light-color);
        }
        
        .footer-links {
            width: 30%;
        }
        
        .footer-links h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--primary-color);
            text-transform: uppercase;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--light-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
        }
        
        .footer-contact {
            width: 30%;
        }
        
        .footer-contact h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--primary-color);
            text-transform: uppercase;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            color: var(--light-color);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 2px solid var(--primary-color);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: #222222;
            padding: 20px;
            border: 2px solid var(--primary-color);
            margin: 50px 0;
            transform: rotate(-1deg);
        }
        
        .disclaimer p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--secondary-color);
            padding: 20px;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            border-top: 3px solid var(--primary-color);
        }
        
        .cookie-banner.active {
            transform: translateY(0);
        }
        
        .cookie-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .cookie-text {
            width: 70%;
            color: var(--light-color);
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .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-color: var(--primary-color);
            color: white;
            border: 2px solid var(--primary-color);
        }
        
        .cookie-accept:hover {
            background-color: transparent;
            color: var(--primary-color);
        }
        
        .cookie-reject {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .cookie-reject:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background-color: var(--secondary-color);
            padding: 40px;
            border: 3px solid var(--primary-color);
            text-align: center;
            max-width: 500px;
            box-shadow: 0 0 30px rgba(230, 0, 0, 0.5);
        }
        
        .modal-content h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--primary-color);
            text-transform: uppercase;
        }
        
        .modal-content p {
            margin-bottom: 30px;
            color: var(--light-color);
        }
        
        .close-modal {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 30px;
            border-radius: 0;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }
        
        .close-modal:hover {
            background-color: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .about-container,
            .contact-container {
                flex-direction: column;
            }
            
            .about-content,
            .contact-form {
                width: 100%;
                margin-bottom: 30px;
            }
            
            .about-image,
            .contact-info {
                width: 100%;
                text-align: center;
            }
            
            .product-card,
            .price-card {
                width: 45%;
            }
            
            .gallery-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: rgba(0, 0, 0, 0.95);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 20px 0;
                border-top: 3px solid var(--primary-color);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .hero h1 {
                font-size: 40px;
            }
            
            .product-card,
            .price-card {
                width: 100%;
            }
            
            .gallery-container {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                flex-direction: column;
            }
            
            .footer-logo,
            .footer-links,
            .footer-contact {
                width: 100%;
                margin-bottom: 30px;
            }
            
            .cookie-container {
                flex-direction: column;
            }
            
            .cookie-text {
                width: 100%;
                margin-bottom: 20px;
            }

            .prices-container{
                flex-wrap: wrap;
            }
        }

