* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #e60000;
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #fff;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .logo span {
            color: #000;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
            text-transform: uppercase;
            transition: all 0.3s;
            position: relative;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #000;
            transition: width 0.3s;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .burger-menu span {
            width: 25px;
            height: 3px;
            background-color: #fff;
            margin: 3px 0;
            transition: 0.3s;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(230, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/16.webp');
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: #fff;
            text-transform: uppercase;
            line-height: 1.2;
            letter-spacing: 1px;
        }
        
        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            color: #f5f5f5;
            line-height: 1.6;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #000;
            color: #fff;
            text-decoration: none;
            border-radius: 0;
            font-weight: bold;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid #000;
        }
        
        .btn:hover {
            background-color: #fff;
            color: #000;
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background-color: #fff;
            position: relative;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #e60000;
            text-transform: uppercase;
        }
        
        .about p {
            margin-bottom: 20px;
            line-height: 1.6;
            font-size: 16px;
        }
        
        .about-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            border: 5px solid #000;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Products Section */
        .products {
            padding: 100px 0;
            background-color: #f5f5f5;
        }
        
        .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 50px;
            color: #e60000;
            text-transform: uppercase;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: #fff;
            border: 3px solid #000;
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .product-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-content {
            padding: 20px;
        }
        
        .product-content h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #e60000;
            text-transform: uppercase;
        }
        
        .product-content p {
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        /* Prices Section */
        .prices {
            padding: 100px 0;
            background-color: #fff;
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .price-card {
            background-color: #f5f5f5;
            border: 3px solid #000;
            overflow: hidden;
            transition: all 0.3s;
            position: relative;
        }
        
        .price-card.featured {
            transform: scale(1.05);
            border-color: #e60000;
        }
        
        .price-card.featured::before {
            content: 'POPULAR';
            position: absolute;
            top: 15px;
            right: -30px;
            background-color: #e60000;
            color: #fff;
            padding: 5px 40px;
            font-weight: bold;
            transform: rotate(45deg);
            font-size: 14px;
            text-transform: uppercase;
        }
        
        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .price-header {
            padding: 30px 20px;
            text-align: center;
            background-color: #000;
            color: #fff;
        }
        
        .price-header h3 {
            font-size: 28px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }
        
        .price {
            font-size: 48px;
            font-weight: bold;
            color: #e60000;
            margin-bottom: 10px;
        }
        
        .price-period {
            color: #fff;
            font-size: 16px;
        }
        
        .price-content {
            padding: 30px 20px;
        }
        
        .price-features {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .price-features li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            font-size: 16px;
        }
        
        .price-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #e60000;
            font-weight: bold;
        }
        
        .price-btn {
            display: block;
            width: 100%;
            padding: 12px 0;
            background-color: #000;
            color: #fff;
            text-decoration: none;
            border-radius: 0;
            font-weight: bold;
            text-align: center;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid #000;
        }
        
        .price-btn:hover {
            background-color: #fff;
            color: #000;
        }
        
        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background-color: #f5f5f5;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            border: 3px solid #000;
            position: relative;
            cursor: pointer;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(230, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-text {
            color: #fff;
            font-size: 18px;
            font-weight: bold;
            text-align: center;
            padding: 0 20px;
            text-transform: uppercase;
        }
        
        /* Feedback Section */
        .feedback {
            padding: 100px 0;
            background-color: #fff;
        }
        
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .feedback-track {
            display: flex;
            transition: transform 0.5s;
        }
        
        .feedback-item {
            min-width: 100%;
            padding: 30px;
            background-color: #f5f5f5;
            border: 3px solid #000;
        }
        
        .feedback-content {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        
        .feedback-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            border: 3px solid #e60000;
        }
        
        .feedback-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .feedback-text {
            flex: 1;
        }
        
        .feedback-text p {
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
            font-size: 16px;
        }
        
        .feedback-author {
            font-weight: bold;
            color: #e60000;
            text-transform: uppercase;
        }
        
        .feedback-position {
            color: #666;
            font-size: 14px;
            text-transform: uppercase;
        }
        
        .feedback-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .feedback-btn {
            width: 40px;
            height: 40px;
            border-radius: 0;
            background-color: #000;
            border: 2px solid #000;
            color: #fff;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .feedback-btn:hover {
            background-color: #fff;
            color: #000;
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background-color: #f5f5f5;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            background-color: #fff;
            border: 3px solid #000;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background-color: #000;
            color: #fff;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
            text-transform: uppercase;
        }
        
        .faq-question:hover {
            background-color: #333;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 24px;
            color: #e60000;
            transition: transform 0.3s;
        }
        
        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }
        
        /* Contact Form */
        .contact {
            padding: 100px 0;
            background-color: #fff;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: #f5f5f5;
            padding: 40px;
            border: 3px solid #000;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: #e60000;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: #fff;
            border: 2px solid #000;
            color: #333;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #e60000;
        }
        
        .form-btn {
            display: block;
            width: 100%;
            padding: 12px;
            background-color: #000;
            color: #fff;
            border: 2px solid #000;
            border-radius: 0;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 16px;
        }
        
        .form-btn:hover {
            background-color: #fff;
            color: #000;
        }
        
        /* Footer */
        footer {
            background-color: #000;
            padding: 50px 0 20px;
            color: #fff;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #e60000;
            text-transform: uppercase;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: #e60000;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            color: #fff;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 14px;
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: #f5f5f5;
            padding: 20px;
            border: 2px solid #000;
            margin: 50px auto;
            max-width: 800px;
        }
        
        .disclaimer p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #000;
            padding: 20px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
            z-index: 1000;
            display: none;
            border-top: 3px solid #e60000;
        }
        
        .cookie-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 20px;
        }
        
        .cookie-text p {
            margin-bottom: 10px;
            color: #fff;
        }
        
        .cookie-text a {
            color: #e60000;
            text-decoration: none;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 16px;
            background-color: #fff;
            border: 2px solid #fff;
            color: #000;
            border-radius: 0;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            font-weight: bold;
        }
        
        .cookie-btn:hover {
            background-color: #000;
            color: #fff;
        }
        
        .cookie-btn.accept {
            background-color: #e60000;
            color: #fff;
            border-color: #e60000;
        }
        
        .cookie-btn.accept:hover {
            background-color: #fff;
            color: #e60000;
        }
        
        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }
        
        .modal-content {
            background-color: #fff;
            padding: 40px;
            border: 3px solid #000;
            max-width: 500px;
            width: 90%;
            text-align: center;
        }
        
        .modal-content h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #e60000;
            text-transform: uppercase;
        }
        
        .modal-content p {
            margin-bottom: 30px;
            color: #333;
        }
        
        .modal-btn {
            padding: 10px 20px;
            background-color: #000;
            color: #fff;
            border: 2px solid #000;
            border-radius: 0;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
        }
        
        .modal-btn:hover {
            background-color: #fff;
            color: #000;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #e60000;
                flex-direction: column;
                padding: 20px;
                border-top: 3px solid #000;
            }
            
            nav ul.active {
                display: flex;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .burger-menu {
                display: flex;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .feedback-content {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 20px;
            }
        }

