* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            overflow-x: hidden;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #D32F2F;
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #FFFFFF;
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-family: 'Arial Black', sans-serif;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: #FFFFFF;
            text-decoration: none;
            font-size: 16px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a:hover {
            color: #FFC107;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #FFC107;
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #FFFFFF;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/17.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 20px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(211, 47, 47, 0.7) 0%, rgba(33, 33, 33, 0.7) 100%);
            z-index: 1;
        }
        
        .hero-content {
            max-width: 800px;
            z-index: 2;
            position: relative;
        }
        
        .hero h1 {
            font-size: 60px;
            margin-bottom: 20px;
            color: #FFFFFF;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-family: 'Arial Black', sans-serif;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .hero p {
            font-size: 22px;
            margin-bottom: 30px;
            line-height: 1.6;
            color: #FFFFFF;
        }
        
        .cta-button {
            display: inline-block;
            background-color: #FFC107;
            color: #212121;
            padding: 15px 35px;
            border-radius: 0;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            transition: all 0.3s ease;
            font-size: 18px;
            letter-spacing: 1px;
        }
        
        .cta-button:hover {
            background-color: #FFFFFF;
            transform: translateY(-3px);
        }
        
        .about {
            padding: 100px 0;
            background-color: #FFFFFF;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 42px;
            color: #D32F2F;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Arial Black', sans-serif;
        }
        
        .section-title p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            color: #757575;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: #212121;
            text-transform: uppercase;
        }
        
        .about-text p {
            margin-bottom: 20px;
            line-height: 1.6;
            font-size: 16px;
            color: #555;
        }
        
        .about-image {
            flex: 1;
            height: 400px;
            background: url('../img/02.webp');
            background-size: cover;
            background-position: center;
            border: 5px solid #D32F2F;
            transform: rotate(2deg);
            transition: transform 0.3s ease;
        }
        
        .about-image:hover {
            transform: rotate(0deg);
        }
        
        .products {
            padding: 100px 0;
            background-color: #f5f5f5;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: #FFFFFF;
            border: 2px solid #D32F2F;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .product-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .product-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
        }
        
        .product-content {
            padding: 25px;
        }
        
        .product-content h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #D32F2F;
            text-transform: uppercase;
        }
        
        .product-content p {
            margin-bottom: 20px;
            line-height: 1.6;
            color: #555;
        }
        
        .prices {
            padding: 100px 0;
            background-color: #212121;
            color: #FFFFFF;
        }
        
        .section-title h2 {
            color: #FFC107;
        }
        
        .section-title p {
            color: #CCCCCC;
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .price-card {
            background-color: #FFFFFF;
            color: #212121;
            border: 2px solid #D32F2F;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .price-card.featured {
            background-color: #D32F2F;
            color: #FFFFFF;
            transform: scale(1.05);
            z-index: 1;
        }
        
        .price-card.featured::before {
            content: "Popular";
            position: absolute;
            top: 15px;
            right: -35px;
            background-color: #FFC107;
            color: #212121;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 14px;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .price-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        
        .price {
            font-size: 48px;
            margin-bottom: 20px;
            color: #D32F2F;
        }
        
        .price-card.featured .price {
            color: #FFC107;
        }
        
        .price span {
            font-size: 18px;
            color: #757575;
        }
        
        .price-card.featured .price span {
            color: #FFFFFF;
        }
        
        .price-features {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }
        
        .price-features li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
        }
        
        .price-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #D32F2F;
            font-weight: bold;
        }
        
        .price-card.featured .price-features li::before {
            color: #FFC107;
        }
        
        .gallery {
            padding: 100px 0;
            background-color: #FFFFFF;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            height: 250px;
            background-size: cover;
            background-position: center;
            border: 3px solid #D32F2F;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        .feedback {
            padding: 100px 0;
            background-color: #f5f5f5;
        }
        
        .feedback-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }
        
        .feedback-card {
            background-color: #FFFFFF;
            border: 2px solid #D32F2F;
            border-radius: 0;
            padding: 30px;
            text-align: center;
            position: relative;
        }
        
        .feedback-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 60px;
            color: #D32F2F;
            opacity: 0.2;
            font-family: Georgia, serif;
        }
        
        .feedback-card p {
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
            font-size: 16px;
            color: #555;
        }
        
        .feedback-card h4 {
            font-size: 20px;
            color: #D32F2F;
            text-transform: uppercase;
        }
        
        .feedback-card .stars {
            color: #FFC107;
            margin-bottom: 15px;
            font-size: 20px;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #757575;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: #D32F2F;
            transform: scale(1.2);
        }
        
        .faq {
            padding: 100px 0;
            background-color: #212121;
            color: #FFFFFF;
        }
        
        .section-title h2 {
            color: #FFC107;
        }
        
        .section-title p {
            color: #CCCCCC;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: #FFFFFF;
            color: #212121;
            border: 2px solid #D32F2F;
            margin-bottom: 15px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: rgba(211, 47, 47, 0.1);
        }
        
        .faq-question h3 {
            font-size: 18px;
            text-transform: uppercase;
        }
        
        .faq-toggle {
            font-size: 24px;
            color: #D32F2F;
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-answer.active {
            padding: 20px;
            max-height: 300px;
        }
        
        .faq-answer p {
            line-height: 1.6;
        }
        
        .contact {
            padding: 100px 0;
            background-color: #f5f5f5;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: #FFFFFF;
            border: 2px solid #D32F2F;
            padding: 40px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #D32F2F;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: #FFFFFF;
            border: 2px solid #D32F2F;
            color: #212121;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #FFC107;
        }
        
        .form-button {
            background-color: #D32F2F;
            color: #FFFFFF;
            border: none;
            padding: 15px 30px;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            font-size: 18px;
        }
        
        .form-button:hover {
            background-color: #FFC107;
            color: #212121;
        }
        
        .disclaimer {
            background-color: #212121;
            color: #FFFFFF;
            padding: 20px;
            text-align: center;
            font-size: 14px;
        }
        
        footer {
            background-color: #212121;
            padding: 50px 0 20px;
            color: #FFFFFF;
        }
        
        .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 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #FFC107;
            text-transform: uppercase;
            font-family: 'Arial Black', sans-serif;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #FFFFFF;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: #FFC107;
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #CCCCCC;
            font-size: 14px;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: #212121;
            border: 2px solid #D32F2F;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(150%);
            transition: transform 0.5s ease;
        }
        
        .cookie-banner.active {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 20px;
            color: #FFFFFF;
        }
        
        .cookie-text p {
            font-size: 14px;
            line-height: 1.5;
        }
        
        .cookie-text a {
            color: #FFC107;
            text-decoration: none;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-button {
            padding: 10px 20px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            text-transform: uppercase;
            font-weight: bold;
        }
        
        .cookie-accept {
            background-color: #D32F2F;
            color: #FFFFFF;
        }
        
        .cookie-accept:hover {
            background-color: #FFC107;
            color: #212121;
        }
        
        .cookie-reject {
            background-color: transparent;
            color: #FFFFFF;
            border: 2px solid #FFFFFF;
        }
        
        .cookie-reject:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .popup.active {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background-color: #FFFFFF;
            border: 2px solid #D32F2F;
            padding: 40px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            transform: scale(0.7);
            transition: transform 0.3s ease;
        }
        
        .popup.active .popup-content {
            transform: scale(1);
        }
        
        .popup h3 {
            color: #D32F2F;
            margin-bottom: 20px;
            font-size: 24px;
            text-transform: uppercase;
        }
        
        .popup p {
            margin-bottom: 30px;
            line-height: 1.6;
            color: #555;
        }
        
        .popup-close {
            background-color: #D32F2F;
            color: #FFFFFF;
            border: none;
            padding: 12px 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }
        
        .popup-close:hover {
            background-color: #FFC107;
            color: #212121;
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                right: 0;
                top: 70px;
                background-color: #D32F2F;
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            }
            
            .nav-links.active {
                transform: translateY(0);
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                height: 300px;
                margin-bottom: 30px;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }

            h2{
                font-size: 2em !important;
            }
        }

