* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        :root {
            --primary: #d50000;
            --secondary: #212121;
            --accent: #ffd600;
            --light: #ffffff;
            --dark: #424242;
            --bg: #f5f5f5;
            --text: #212121;
            --text-light: #757575;
        }

        body {
            background-color: var(--bg);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--secondary);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--light);
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(rgba(33, 33, 33, 0.8), rgba(33, 33, 33, 0.8)), url('../img/05.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            overflow: hidden;
            color: var(--light);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(213, 0, 0, 0.3), rgba(255, 214, 0, 0.3));
            z-index: 1;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            text-align: center;
            z-index: 2;
            position: relative;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--light);
            text-transform: uppercase;
            letter-spacing: 2px;
            animation: fadeInUp 1s ease;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.2s;
            animation-fill-mode: both;
        }

        .cta-button {
            display: inline-block;
            padding: 12px 30px;
            background: var(--primary);
            color: var(--light);
            text-decoration: none;
            border-radius: 0;
            font-weight: bold;
            text-transform: uppercase;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease 0.4s;
            animation-fill-mode: both;
            border: 2px solid var(--primary);
        }

        .cta-button:hover {
            background: transparent;
            color: var(--primary);
            border-color: var(--primary);
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background: var(--light);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
            width: 100%;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--primary);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-image {
            flex: 1;
            text-align: center;
        }

        .about-image img {
            max-width: 100%;
            border: 5px solid var(--secondary);
            transform: rotate(-2deg);
        }

        /* Products Section */
        .products {
            padding: 100px 0;
            background: var(--bg);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .product-card {
            background: var(--light);
            border: 2px solid var(--secondary);
            overflow: hidden;
            transition: all 0.3s ease;
            transform: rotate(1deg);
        }

        .product-card:hover {
            transform: rotate(0deg) scale(1.02);
        }

        .product-image {
            height: 200px;
            overflow: hidden;
            border-bottom: 2px solid var(--secondary);
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-info {
            padding: 20px;
        }

        .product-info h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--primary);
            text-transform: uppercase;
        }

        /* Prices Section */
        .prices {
            padding: 100px 0;
            background: var(--light);
        }

        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .price-card {
            background: var(--bg);
            border: 2px solid var(--secondary);
            padding: 30px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            transform: rotate(-1deg);
        }

        .price-card.featured {
            transform: rotate(1deg) scale(1.05);
            border-color: var(--primary);
        }

        .price-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--secondary);
            text-transform: uppercase;
        }

        .price {
            font-size: 2.5rem;
            font-weight: bold;
            margin: 20px 0;
            color: var(--primary);
        }

        .price-card ul {
            list-style: none;
            margin: 30px 0;
            text-align: left;
        }

        .price-card ul li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 25px;
        }

        .price-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
        }

        .price-button {
            display: inline-block;
            padding: 10px 25px;
            background: var(--secondary);
            color: var(--light);
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: 2px solid var(--secondary);
        }

        .price-button:hover {
            background: transparent;
            color: var(--secondary);
        }

        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background: var(--bg);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .gallery-item {
            height: 250px;
            overflow: hidden;
            border: 3px solid var(--secondary);
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
            transform: rotate(2deg);
        }

        .gallery-item:nth-child(even) {
            transform: rotate(-2deg);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(33, 33, 33, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay span {
            color: var(--accent);
            font-size: 1.2rem;
            font-weight: bold;
            text-transform: uppercase;
        }

        /* Feedback Section */
        .feedback {
            padding: 100px 0;
            background: var(--light);
        }

        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 50px auto 0;
            overflow: hidden;
            border: 2px solid var(--secondary);
        }

        .feedback-container {
            display: flex;
            transition: transform 0.5s ease;
        }

        .feedback-item {
            min-width: 100%;
            padding: 30px;
            background: var(--bg);
            text-align: center;
        }

        .feedback-item p {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .feedback-item h4 {
            font-weight: bold;
            color: var(--primary);
            text-transform: uppercase;
        }

        .feedback-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 15px;
        }

        .feedback-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--secondary);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .feedback-dot.active {
            background: var(--primary);
            transform: scale(1.2);
        }

        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background: var(--bg);
        }

        .faq-container {
            max-width: 800px;
            margin: 50px auto 0;
        }

        .faq-item {
            margin-bottom: 20px;
            background: var(--light);
            border: 2px solid var(--secondary);
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            background: var(--secondary);
            color: var(--light);
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: var(--primary);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 20px;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 20px 20px;
        }

        /* Contact Form */
        .contact {
            padding: 100px 0;
            background: var(--light);
        }

        .contact-form {
            max-width: 600px;
            margin: 50px auto 0;
            background: var(--bg);
            padding: 30px;
            border: 2px solid var(--secondary);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: var(--secondary);
            text-transform: uppercase;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background: var(--light);
            border: 2px solid var(--secondary);
            color: var(--text);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
        }

        .submit-button {
            display: block;
            width: 100%;
            padding: 12px;
            background: var(--primary);
            color: var(--light);
            border: none;
            border: 2px solid var(--primary);
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .submit-button:hover {
            background: transparent;
            color: var(--primary);
        }

        /* Disclaimer */
        .disclaimer {
            background: var(--secondary);
            padding: 20px;
            text-align: center;
            font-size: 0.9rem;
            color: var(--light);
        }

        /* Footer */
        footer {
            background: var(--secondary);
            padding: 50px 0 20px;
            color: var(--light);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .footer-column h3 {
            margin-bottom: 20px;
            color: var(--accent);
            text-transform: uppercase;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--secondary);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1001;
            transform: translateY(100%);
            transition: transform 0.5s ease;
            color: var(--light);
        }

        .cookie-banner.active {
            transform: translateY(0);
        }

        .cookie-text {
            max-width: 800px;
            padding-right: 20px;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
        }

        .cookie-button {
            padding: 8px 20px;
            border: none;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .accept-button {
            background: var(--primary);
            color: var(--light);
            border: 2px solid var(--primary);
        }

        .accept-button:hover {
            background: transparent;
            color: var(--primary);
        }

        .decline-button {
            background: transparent;
            color: var(--light);
            border: 2px solid var(--light);
        }

        .decline-button:hover {
            background: var(--light);
            color: var(--secondary);
        }

        /* Popup */
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(33, 33, 33, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1002;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .popup.active {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            background: var(--light);
            padding: 30px;
            border: 3px solid var(--primary);
            max-width: 500px;
            width: 90%;
            text-align: center;
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }

        .popup.active .popup-content {
            transform: scale(1);
        }

        .popup-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--secondary);
        }

        .popup-close:hover {
            color: var(--primary);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .burger {
                display: block;
            }

            nav ul {
                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.5s ease;
            }

            nav ul.active {
                transform: translateY(0);
            }

            nav ul li {
                margin: 15px 0;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .about-content {
                flex-direction: column;
            }

            .prices-grid {
                grid-template-columns: 1fr;
            }

            .price-card.featured {
                transform: rotate(0deg) scale(1);
            }

            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }

            .cookie-text {
                padding-right: 0;
                margin-bottom: 15px;
            }
            h2{
                font-size: 2em !important;
            }
        }

