* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color:rgb(244, 238, 216)
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Banner */
.top-banner {
    background-color: #ffd700;
    color: #000;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .top-banner {
        font-size: 14px;
    }
}

/* Header */
.header {
    background-color: antiquewhite;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-box {
    background-color: #000;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
}

.nav-desktop {
    display: none;
    gap: 30px;
}

.nav-desktop a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-desktop a:hover {
    color: #666;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-icons i {
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
}

.header-icons i:hover {
    color: #666;
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-count {
    background-color: #ffd700;
    color: #000;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold;
}

.mobile-menu-toggle {
    display: block;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    flex-direction: column;
    background-color: antiquewhite;
    padding: 20px;
    border-top: 1px solid #ddd;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5, #fce4ec);
    background-image: url('https://sjc.microlink.io/8_1krnRRPhWznK23CUSfcNpTg82YEfWi0RaAZdRrZ73oNEiFYVCEAo1DeqiEAQFwFwJVd_MYet7nF9n7sYawiQ.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    max-width: 600px;
    padding: 40px 20px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 30px;
    max-width: 500px;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 5rem;
    }
}

/* Buttons */
.btn-primary {
    background-color: #000;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: #333;
}

.btn-secondary {
    background-color: #fff;
    color: #000;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
}

.btn-add-cart {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-add-cart:hover {
    background-color: #333;
}

/* Scrolling Banner */
.scrolling-banner {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
}

.scroll-content {
    display: inline-block;
    animation: scroll 20s linear infinite;
}

.scroll-content span {
    font-size: 2rem;
    font-weight: 900;
    margin: 0 50px;
}

@media (min-width: 768px) {
    .scroll-content span {
        font-size: 3rem;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #000;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3.5rem;
    }
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: antiquewhite;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-item {
    text-align: center;
}

.feature-icon {
    background-color: #ffd700;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: #000;
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.product-image {
    height: 250px;
    background: linear-gradient(135deg, #e1bee7, #f8bbd9);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.product-badge.bestseller {
    background-color: #ffd700;
    color: #000;
}

.product-badge.new {
    background-color: #ff4444;
    color: #fff;
}

.product-badge.bundle {
    background-color: #4caf50;
    color: #fff;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.product-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background-color: antiquewhite;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-item {
    text-align: center;
}

.step-number {
    background-color: #000;
    color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    font-weight: bold;
}

.step-item h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000;
}

.step-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background-color: #000;
    color: #fff;
    text-align: center;
}

.video-section h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .video-section h2 {
        font-size: 4rem;
    }
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background-color: #333;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.video-placeholder:hover {
    background-color: #444;
}

.play-button {
    background-color: #ffd700;
    color: #000;
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button i {
    font-size: 2rem;
    margin-left: 5px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: antiquewhite;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.stars i {
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonial-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.author {
    font-weight: bold;
    color: #000;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: antiquewhite;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ffa8a8;
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #666;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Bottom CTA */
.bottom-cta {
    padding: 80px 0;
    background-color: #000;
    color: #fff;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

@media (min-width: 1024px) {
    .cta-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .cta-content h2 {
        font-size: 3.5rem;
    }
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background-color: #ffd700;
    text-align: center;
}

.newsletter h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #000;
}

.newsletter p {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .newsletter h2 {
        font-size: 4rem;
    }
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .newsletter-form {
        flex-direction: row;
    }
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #000;
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Fixed Elements */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #000;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: background-color 0.3s;
}

.chat-widget:hover {
    background-color: #333;
}

.chat-widget i {
    font-size: 1.5rem;
}

.app-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #000;
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    display: none;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    font-weight: bold;
    font-size: 14px;
}

@media (min-width: 768px) {
    .app-banner {
        display: flex;
    }
}

.app-icon {
    background-color: #fff;
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text {
        padding: 20px 15px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .newsletter h2 {
        font-size: 2.5rem;
    }
    
    .video-section h2 {
        font-size: 2.5rem;
    }
}