:root {
            --primary: #D4A017;
            --secondary: #C0C0C0;
            --tertiary: #800000;
            --dark: #000000;
            --light: #FFFFFF;
            --text: #FFFFFF;
            --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Narrow', Arial, sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        body {
            background-color: var(--dark);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.4;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 3px solid var(--primary);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 32px;
            font-weight: bold;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: 3px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
            position: relative;
        }
        
        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
            transition: all 0.3s ease;
            padding: 5px 0;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            height: 21px;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--text);
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/10.webp');
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            padding: 40px;
            background: rgba(0, 0, 0, 0.7);
            border-left: 5px solid var(--primary);
        }
        
        .hero h1 {
            font-size: 60px;
            margin-bottom: 20px;
            color: var(--primary);
            line-height: 1.1;
            font-weight: bold;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            color: var(--secondary);
        }
        
        .btn {
            display: inline-block;
            padding: 15px 30px;
            background: var(--primary);
            color: var(--dark);
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 18px;
            text-transform: uppercase;
        }
        
        .btn:hover {
            background: var(--secondary);
            color: var(--dark);
            transform: translateY(-3px);
        }
        
        /* Section Styles */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 40px;
            margin-bottom: 15px;
            color: var(--primary);
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--primary);
        }
        
        .section-title p {
            font-size: 18px;
            color: var(--secondary);
            max-width: 700px;
            margin: 20px auto 0;
        }
        
        /* About Section */
        .about {
            background: linear-gradient(135deg, rgba(212, 160, 23, 0.1), rgba(192, 192, 192, 0.1));
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
            padding: 30px;
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid var(--primary);
        }
        
        .about-text h3 {
            font-size: 30px;
            margin-bottom: 20px;
            color: var(--primary);
            border-bottom: 2px solid var(--primary);
            padding-bottom: 10px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: var(--secondary);
            line-height: 1.6;
        }
        
        .about-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            border: 3px solid var(--primary);
            height: 400px;
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Products Section */
        .products {
            background: linear-gradient(135deg, rgba(128, 0, 0, 0.1), rgba(212, 160, 23, 0.1));
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background: rgba(0, 0, 0, 0.7);
            border: 2px solid var(--primary);
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(212, 160, 23, 0.5);
        }
        
        .product-image {
            height: 200px;
            overflow: hidden;
            border-bottom: 2px solid var(--primary);
        }
        
        .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;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .product-info h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--primary);
            border-bottom: 1px solid var(--primary);
            padding-bottom: 10px;
        }
        
        .product-info p {
            margin-bottom: 20px;
            color: var(--secondary);
            flex-grow: 1;
        }
        
        /* Prices Section */
        .prices {
            background: linear-gradient(135deg, rgba(192, 192, 192, 0.1), rgba(128, 0, 0, 0.1));
        }
        
        .price-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .price-card {
            background: rgba(0, 0, 0, 0.7);
            border: 2px solid var(--primary);
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .price-card.featured {
            transform: scale(1.05);
            border-color: var(--secondary);
        }
        
        .price-card.featured::before {
            content: 'POPULAR';
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--primary);
            color: var(--dark);
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 12px;
            font-weight: bold;
        }
        
        .price-card h3 {
            font-size: 28px;
            margin-bottom: 15px;
            color: var(--primary);
            border-bottom: 1px solid var(--primary);
            padding-bottom: 10px;
        }
        
        .price {
            font-size: 40px;
            font-weight: bold;
            margin-bottom: 20px;
            color: var(--secondary);
        }
        
        .price-card ul {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
            flex-grow: 1;
        }
        
        .price-card li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--secondary);
            position: relative;
            padding-left: 20px;
        }
        
        .price-card li:before {
            content: '▶';
            position: absolute;
            left: 0;
            color: var(--primary);
        }
        
        /* Gallery Section */
        .gallery {
            background: linear-gradient(135deg, rgba(128, 0, 0, 0.1), rgba(192, 192, 192, 0.1));
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border: 3px solid var(--primary);
            height: 250px;
        }
        
        .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;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.8);
            padding: 15px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            border-top: 2px solid var(--primary);
        }
        
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }
        
        .gallery-overlay h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--primary);
        }
        
        .gallery-overlay p {
            font-size: 14px;
            color: var(--secondary);
        }
        
        /* Feedback Section */
        .feedback {
            background: linear-gradient(135deg, rgba(212, 160, 23, 0.1), rgba(128, 0, 0, 0.1));
        }
        
        .feedback-slider {
            position: relative;
            overflow: hidden;
            border: 3px solid var(--primary);
            border-radius: 0;
        }
        
        .feedback-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-card {
            min-width: 100%;
            padding: 40px;
            background: rgba(0, 0, 0, 0.7);
            text-align: center;
        }
        
        .feedback-card p {
            font-size: 18px;
            font-style: italic;
            margin-bottom: 20px;
            color: var(--secondary);
            line-height: 1.6;
            position: relative;
            padding: 0 30px;
        }
        
        .feedback-card p:before,
        .feedback-card p:after {
            content: '"';
            font-size: 40px;
            color: var(--primary);
            position: absolute;
        }
        
        .feedback-card p:before {
            top: -10px;
            left: 0;
        }
        
        .feedback-card p:after {
            bottom: -30px;
            right: 0;
        }
        
        .feedback-card h4 {
            font-size: 20px;
            margin-bottom: 5px;
            color: var(--primary);
        }
        
        .feedback-card .position {
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .feedback-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .feedback-btn {
            width: 50px;
            height: 50px;
            border-radius: 0;
            background: var(--primary);
            border: none;
            color: var(--dark);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 20px;
            font-weight: bold;
        }
        
        .feedback-btn:hover {
            background: var(--secondary);
        }
        
        /* FAQ Section */
        .faq {
            background: linear-gradient(135deg, rgba(192, 192, 192, 0.1), rgba(212, 160, 23, 0.1));
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: rgba(0, 0, 0, 0.7);
            border: 1px solid var(--primary);
            margin-bottom: 15px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            border-bottom: 1px solid transparent;
        }
        
        .faq-question:hover {
            background: rgba(212, 160, 23, 0.2);
        }
        
        .faq-question h3 {
            font-size: 20px;
            color: var(--primary);
            font-weight: bold;
        }
        
        .faq-icon {
            font-size: 24px;
            transition: transform 0.3s ease;
            color: var(--primary);
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        
        .faq-answer p {
            padding: 0 20px 20px;
            color: var(--secondary);
            line-height: 1.6;
        }
        
        /* Contact Form */
        .contact {
            background: linear-gradient(135deg, rgba(128, 0, 0, 0.1), rgba(192, 192, 192, 0.1));
            padding-bottom: 50px;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(0, 0, 0, 0.7);
            padding: 40px;
            border: 2px solid var(--primary);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--primary);
            font-weight: bold;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid var(--primary);
            color: var(--text);
            font-size: 16px;
            text-transform: uppercase;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
        }
        
        .submit-btn {
            width: 100%;
            padding: 15px;
            background: var(--primary);
            border: none;
            color: var(--dark);
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }
        
        .submit-btn:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }
        
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background: var(--dark);
            padding: 40px;
            border: 3px solid var(--primary);
            text-align: center;
            max-width: 500px;
            position: relative;
        }
        
        .modal-content h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .modal-content p {
            margin-bottom: 30px;
            color: var(--secondary);
        }
        
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: var(--primary);
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            padding: 50px 0 20px;
            border-top: 3px solid var(--primary);
        }
        
        .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: var(--primary);
            border-bottom: 1px solid var(--primary);
            padding-bottom: 10px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 15px;
        }
        
        .footer-links li:before {
            content: '▶';
            position: absolute;
            left: 0;
            color: var(--primary);
        }
        
        .footer-links a {
            color: var(--secondary);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }
        
        .contact-info p {
            margin-bottom: 10px;
            color: var(--secondary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--primary);
            color: var(--secondary);
            font-size: 14px;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.9);
            padding: 20px;
            border: 2px solid var(--primary);
            z-index: 1001;
            display: none;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .cookie-text {
            flex: 1;
            color: var(--secondary);
            font-size: 14px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 10px 20px;
            border: none;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }
        
        .cookie-accept {
            background: var(--primary);
            color: var(--dark);
        }
        
        .cookie-decline {
            background: transparent;
            color: var(--text);
            border: 1px solid var(--text);
        }
        
        .cookie-btn:hover {
            transform: translateY(-2px);
        }
        
        /* Disclaimer */
        .disclaimer {
            background: rgba(212, 160, 23, 0.1);
            padding: 20px;
            margin-top: 50px;
            border: 1px solid var(--primary);
            text-align: center;
        }
        
        .disclaimer p {
            font-size: 14px;
            color: var(--secondary);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 50px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .price-card.featured {
                transform: scale(1);
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                right: 0;
                top: 70px;
                background: rgba(0, 0, 0, 0.95);
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.5s ease;
                border-left: 3px solid var(--primary);
                border-bottom: 3px solid var(--primary);
            }
            
            .nav-links.active {
                transform: translateY(0);
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .burger {
                display: flex;
            }
            
            .hero h1 {
                font-size: 40px;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 30px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .section-title h2 {
                font-size: 24px;
            }
            
            .price {
                font-size: 30px;
            }
            
            .feedback-card {
                padding: 20px;
            }
            
            .contact-form {
                padding: 20px;
            }
        }

