
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            background: #FAF7F2;
            color: #2C2C2C;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hotbar */
        .hotbar {
            position: sticky;
            top: 0;
            z-index: 999;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #FAF7F2;
            padding: 15px 20px;
            border-bottom: 1px solid #E0E0E0;
        }

        .hotbar .logo {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2C2C2C;
        }

        .hotbar nav {
            display: flex;
            gap: 25px;
        }

        .hotbar nav a {
            text-decoration: none;
            color: #2C2C2C;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .hotbar nav a:hover {
            color: #D4AF37;
        }

        .hotbar .cart {
            position: relative;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .hotbar .cart::after {
            content: '3';
            position: absolute;
            top: -8px;
            right: -10px;
            background: #D4AF37;
            color: white;
            font-size: 0.7rem;
            padding: 2px 6px;
            border-radius: 50%;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #F5E6D3 0%, #E8D5C4 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-30px) scale(1.05); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: #2C2C2C;
            margin-bottom: 20px;
            line-height: 1.2;
            font-weight: 300;
            letter-spacing: -1px;
        }

        .hero .gold-text { color: #D4AF37; font-style: italic; font-weight: 400; }

        .hero p {
            font-size: 1.25rem;
            line-height: 1.8;
            margin-bottom: 40px;
            color: #5C5C5C;
        }

        .cta-button {
            display: inline-block;
            padding: 18px 45px;
            background: linear-gradient(135deg, #D4AF37 0%, #C5A028 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .cta-button:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4); }
        .cta-button:hover::before { left: 100%; }

        /* Before/After Section */
        .before-after { padding: 100px 0; background: white; }

        .section-title {
            text-align: center;
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 60px;
            color: #2C2C2C;
            font-weight: 300;
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .comparison-card {
            background: #FAF7F2;
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .comparison-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }

        .comparison-card .icon {
            font-size: 3rem;
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeIn 0.8s ease forwards;
        }

        @keyframes fadeIn { to { opacity: 1; } }

        .comparison-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: #D4AF37; }
        .comparison-card p { color: #5C5C5C; line-height: 1.6; }

        /* Pain Section */
        .pain-section { padding: 100px 0; background: linear-gradient(135deg, #2C2C2C 0%, #3D3D3D 100%); color: white; }
        .pain-content { max-width: 800px; margin: 0 auto; text-align: center; }
        .pain-section h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 30px; font-weight: 300; }
        .pain-list { list-style: none; margin: 40px 0; }
        .pain-list li {
            font-size: 1.2rem;
            padding: 20px;
            margin: 15px 0;
            background: rgba(255, 255, 255, 0.05);
            border-left: 4px solid #D4AF37;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .pain-list li:hover { background: rgba(255, 255, 255, 0.1); transform: translateX(10px); }

        /* Solution Section */
        .solution-section { padding: 100px 0; background: white; }
        .solution-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 50px; margin-top: 60px; }
        .solution-card { text-align: center; padding: 30px; }
        .solution-icon {
            width: 80px; height: 80px;
            background: linear-gradient(135deg, #D4AF37 0%, #C5A028 100%);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 25px; font-size: 2rem; color: white;
            animation: pulse 2s ease-in-out infinite;
        }
        @keyframes pulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
            50% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(212, 175, 55, 0); }
        }
        .solution-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: #2C2C2C; }
        .solution-card p { color: #5C5C5C; line-height: 1.7; }

        /* Individual Products Section */
        .products-section { padding: 100px 0; background: #FAF7F2; }
        .products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-top: 60px; }
        .product-card {
            background: white; padding: 30px; border-radius: 20px;
            text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .product-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
        .product-card img { width: 100%; border-radius: 15px; margin-bottom: 20px; }
        .product-card h4 { font-size: 1.2rem; margin-bottom: 10px; color: #2C2C2C; }
        .product-card p { color: #5C5C5C; margin-bottom: 15px; }
        .product-card .price { font-weight: 600; color: #D4AF37; font-size: 1.4rem; }

        /* Testimonials Section */
        .testimonials { padding: 100px 0; background: #FAF7F2; }
        .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 60px; }
        .testimonial-card {
            background: white; padding: 40px; border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05); transition: transform 0.4s ease;
        }
        .testimonial-card:hover { transform: scale(1.03); }
        .stars { color: #D4AF37; font-size: 1.2rem; margin-bottom: 20px; }
        .testimonial-text { font-style: italic; margin-bottom: 25px; line-height: 1.8; color: #2C2C2C; }
        .testimonial-author { font-weight: 600; color: #5C5C5C; }

        /* Pricing Section */
        .pricing-section { padding: 100px 0; background: linear-gradient(135deg, #E8D5C4 0%, #F5E6D3 100%); }
        .pricing-card { background: white; max-width: 600px; margin: 60px auto 0; padding: 60px; border-radius: 30px; box-shadow: 0 20px 60px rgba(0,0,0,0.1); text-align: center; }
        .badge { display: inline-block; background: #D4AF37; color: white; padding: 8px 20px; border-radius: 20px; font-size: 0.9rem; font-weight: 600; margin-bottom: 20px; }
        .pricing-card h3 { font-size: 2rem; margin-bottom: 30px; color: #2C2C2C; }
        .value-list { list-style: none; margin: 30px 0; text-align: left; }
        .value-list li { padding: 15px 0; border-bottom: 1px solid #F0F0F0; display: flex; justify-content: space-between; color: #5C5C5C; }
        .value-list .check { color: #D4AF37; margin-right: 10px; }
        .total-value { font-size: 1.2rem; color: #999; text-decoration: line-through; margin: 30px 0 10px; }
        .price { font-size: 3.5rem; color: #D4AF37; font-weight: 700; margin: 20px 0; }
        .price-subtext { color: #5C5C5C; margin-bottom: 30px; }

        /* Guarantee Section */
        .guarantee { padding: 80px 0; background: #2C2C2C; color: white; text-align: center; }
        .guarantee-content { max-width: 700px; margin: 0 auto; }
        .guarantee-badge { width: 120px; height: 120px; background: #D4AF37; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 30px; font-size: 2.5rem; }
        .guarantee h2 { font-size: 2.5rem; margin-bottom: 20px; font-weight: 300; }
        .guarantee p { font-size: 1.2rem; line-height: 1.8; color: #E0E0E0; margin-bottom: 40px; }

        /* Footer */
        footer {
            background: #2C2C2C; color: #E0E0E0;
            padding: 60px 20px 30px;
        }
        footer .footer-container { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; }
        footer .footer-logo { font-size: 1.5rem; font-weight: 600; color: #D4AF37; margin-bottom: 20px; }
        footer .footer-links { display: flex; flex-direction: column; gap: 12px; }
        footer .footer-links a { color: #E0E0E0; text-decoration: none; transition: color 0.3s ease; }
        footer .footer-links a:hover { color: #D4AF37; }
        footer .footer-bottom { text-align: center; margin-top: 40px; font-size: 0.9rem; color: #999; }

        /* Responsive */
        @media (max-width: 768px) {
            .hero { min-height: 80vh; }
            .pricing-card { padding: 40px 30px; }
            .solution-grid, .testimonial-grid, .products-grid { gap: 30px; }
            .hotbar { flex-direction: column; gap: 10px; align-items: flex-start; }
        }

        /* Scroll Animation */
        .fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
        .fade-in.visible { opacity: 1; transform: translateY(0); }

 
        .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card img {
    width: 100%;
    height: auto;
    object-fit: contain; /* Ensures image keeps its aspect ratio */
    border-radius: 12px; /* Optional: makes images look nicer */
    transition: transform 0.3s ease;
}

.product-card img:hover {
    transform: scale(1.05); /* Slight zoom on hover for effect */
}
