* { margin: 0; padding: 0; box-sizing: border-box; }
        body {font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;}
        h1, h2, h3 {
            margin-bottom: 1rem;
            color: #000;
        }
        h1 { 
            font-size: 2.5rem; 
            text-align: center;
            margin-bottom: 2rem;
            border-bottom: 3px solid #CC0000;
            padding-bottom: 1rem;
        }
        h2 { 
            font-size: 1.8rem; 
            margin-top: 2rem;
            color: #CC0000;
        }
        h3 { 
            font-size: 1.3rem; 
            margin-top: 1.5rem;
        }
        p, ul, ol { margin-bottom: 1rem; }
        ul, ol { padding-left: 2rem; }
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
            background-color: #f9f9f9;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            margin-bottom: 2rem;
        }
/* CSS Reset and Base Styles */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary-red: #CC0000;
            --primary-black: #000000;
            --primary-white: #FFFFFF;
            --primary-gray: #333333;
            --accent-yellow: #FFD700;
            --accent-dark-red: #8B0000;
            --light-gray: #F5F5F5;
        }
        body {font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--primary-black);
            background-color: var(--primary-white);
            overflow-x: hidden;}
        h1, h2, h3, h4 {
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            color: var(--primary-black);
        }
        h1 { font-size: 2.5rem; }
        h2 { font-size: 2rem; }
        h3 { font-size: 1.5rem; }
        p { margin-bottom: 1rem; }
        a { color: var(--primary-red); text-decoration: none; }
        a:hover { text-decoration: underline; }
        img { max-width: 100%; height: auto; }
        .container {
            width: 100%;
            padding: 0 1rem;
            margin: 0 auto;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--primary-red);
            color: var(--primary-white);
            text-transform: uppercase;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        .btn:hover {
            background-color: var(--accent-dark-red);
            text-decoration: none;
        }
        .btn-secondary {
            background-color: var(--primary-black);
        }
        .btn-secondary:hover {
            background-color: var(--primary-gray);
        }
        .section {
            padding: 4rem 0;
            position: relative;
        }
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        .section-title:after {
            content: "";
            display: block;
            width: 100px;
            height: 4px;
            background-color: var(--primary-red);
            margin: 1rem auto;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--primary-white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-red);
            text-transform: uppercase;
        }
        .nav-menu {
            display: flex;
            list-style: none;
        }
        .nav-menu li {
            margin-left: 2rem;
        }
        .nav-menu a {
            color: var(--primary-black);
            text-transform: uppercase;
            font-weight: bold;
        }
        .nav-menu a:hover {
            color: var(--primary-red);
        }
        .burger {
            display: none;
            cursor: pointer;
        }
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--primary-black);
            margin: 5px;
            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('https://images.unsplash.com/photo-1656049471577-1c10b7359c7d?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
            color: var(--primary-white);
            text-align: center;
            padding-top: 80px;
        }
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--primary-white);
        }
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        /* About Section */
        .about {
            background-color: var(--light-gray);
        }
        .about-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 2rem;
        }
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        .about-image {
            flex: 1;
            min-width: 300px;
        }

        /* Products Section */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .product-card {
            background-color: var(--primary-white);
            padding: 2rem;
            border-left: 4px solid var(--primary-red);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        /* Prices Section */
        .prices {
            background-color: var(--light-gray);
        }
        .price-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .price-card {
            background-color: var(--primary-white);
            padding: 2rem;
            text-align: center;
            border-top: 4px solid var(--primary-red);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-red);
            margin: 1rem 0;
        }
        .price-features {
            list-style: none;
            margin: 1rem 0;
        }
        .price-features li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }

        /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
        }
        .gallery-item {
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        .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-slider {
            position: relative;
            overflow: hidden;
            padding: 2rem 0;
        }
        .feedback-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        .feedback-slide {
            min-width: 100%;
            padding: 0 1rem;
        }
        .feedback-card {
            background-color: var(--primary-white);
            padding: 2rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            border-bottom: 4px solid var(--primary-red);
        }
        .feedback-author {
            display: flex;
            align-items: center;
            margin-top: 1rem;
        }
        .feedback-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 1rem;
        }
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }
        .slider-dot {
            width: 12px;
            height: 12px;
            background-color: #ccc;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
        }
        .slider-dot.active {
            background-color: var(--primary-red);
        }

        /* FAQ Section */
        .faq {
            background-color: var(--light-gray);
        }
        .faq-item {
            margin-bottom: 1rem;
            border-bottom: 1px solid #ddd;
        }
        .faq-question {
            padding: 1rem 0;
            cursor: pointer;
            position: relative;
            font-weight: bold;
        }
        .faq-question:after {
            content: "+";
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
        }
        .faq-question.active:after {
            content: "-";
        }
        .faq-answer {
            padding: 0 0 1rem;
            display: none;
        }
        .faq-answer.active {
            display: block;
        }

        /* Contact Section */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }
        .form-control {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ddd;
            font-size: 1rem;
        }
        .form-control:focus {
            outline: none;
            border-color: var(--primary-red);
        }

        /* Popup Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        .modal-content {
            background-color: var(--primary-white);
            padding: 2rem;
            max-width: 500px;
            width: 100%;
            text-align: center;
        }
        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Disclaimer */
        .disclaimer {
            background-color: var(--primary-black);
            color: var(--primary-white);
            padding: 1.5rem 0;
            font-size: 0.9rem;
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--primary-black);
            color: var(--primary-white);
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1500;
            display: none;
        }
        .cookie-banner p {
            margin-bottom: 0;
            flex: 1;
            padding-right: 1rem;
        }
        .cookie-btn {
            background-color: var(--primary-red);
            color: var(--primary-white);
            border: none;
            padding: 0.5rem 1rem;
            cursor: pointer;
        }

        /* Footer */
        footer {
            background-color: var(--primary-black);
            color: var(--primary-white);
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 2rem;
        }
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 2rem;
        }
        .footer-column h3 {
            color: var(--primary-white);
            margin-bottom: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: var(--primary-white);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.75rem; }
            h3 { font-size: 1.25rem; }
            .burger {
                display: block;
            }
            .nav-menu {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--primary-white);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.5s ease;
            }
            .nav-menu.active {
                right: 0;
            }
            .nav-menu li {
                margin: 1.5rem 0;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

