/* Mobile Layouts */
@media (max-width: 767px) {
    #desktop-header {
        display: none;
    }
    #mobile-header {
        display: block;
    }
    #desktop-footer {
        display: none;
    }
    #mobile-footer {
        display: block;
    }

    .container {
        padding: 0 15px;
    }

    h1 { font-size: 2.5em; margin-bottom: 15px; }
    h2 { font-size: 2em; margin-bottom: 15px; }
    h3 { font-size: 1.4em; }
    p { font-size: 0.95em; }

    .section-padding {
        padding: 60px 0;
    }

    .section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    /* Hero Section */
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-text, .hero-image {
        max-width: 100%;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2.8em;
    }
    .hero-text p {
        font-size: 1em;
    }
    .hero-image {
        margin-top: 30px;
    }

    /* Real Food Ingredients */
    .real-food-container {
        flex-direction: column;
        text-align: center;
    }
    .real-food-image {
        max-width: 90%;
        justify-content: center;
        margin-bottom: 30px;
    }
    .real-food-text {
        max-width: 100%;
        text-align: center;
    }

    /* When To Use Section */
    .use-cases-grid {
        grid-template-columns: 1fr; /* Stack items */
    }

    /* Why Choose Us */
    .why-choose-us-container {
        flex-direction: column;
        text-align: center;
    }
    .why-choose-us-text {
        max-width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    .why-choose-us-details {
        flex-direction: column;
        max-width: 100%;
    }
    .product-display {
        margin-bottom: 30px;
    }
    .feature-item {
        text-align: center;
    }
    .feature-item i {
        margin: 0 auto 15px auto;
    }

    /* Best Selling Product */
    .product-cards-grid {
        grid-template-columns: 1fr;
    }
    .product-image-bg {
        min-height: 200px;
    }

    /* Stats Section */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr); /* Display in 2 columns on mobile */
        gap: 20px;
    }
    .stat-item .stat-number {
        font-size: 3em;
    }

    /* Testimonials */
    .testimonials-carousel-wrapper {
        padding: 0 15px; /* Adjust padding for smaller screens */
    }
    .testimonial-card {
        flex: 0 0 100%; /* Show one card at a time */
        margin: 0;
        min-width: unset; /* Remove min-width constraint */
    }
    .testimonial-avatar {
        float: none; /* Remove float */
        margin: 0 auto 20px auto; /* Center avatar */
    }
    .testimonial-card .quote {
        text-align: center; /* Center quote text */
    }
    .carousel-nav {
        display: flex; /* Show nav buttons on mobile */
        justify-content: center; /* Center buttons */
        position: static; /* Position below carousel */
        transform: none;
        margin-top: 30px;
        gap: 20px;
    }
    .carousel-nav button {
        position: static; /* Remove absolute positioning */
        transform: none;
        width: 50px;
        height: 50px;
    }

    /* Partners Section */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
        gap: 20px;
    }
    .partners-grid img {
        max-width: 100%; /* Make images responsive to their container */
    }

    /* Contact Section */
    .contact-container {
        flex-direction: column;
        text-align: center;
    }
    .contact-form-wrapper {
        max-width: 100%;
        text-align: center;
    }
    .contact-form-wrapper .section-description {
        text-align: center;
    }
    .contact-image {
        max-width: 90%;
        margin-top: 30px;
        justify-content: center;
    }

    /* Subscribe Section */
    .subscribe-container {
        padding: 40px 0;
    }
    .subscribe-form {
        flex-direction: column;
        max-width: 90%;
    }
    .subscribe-form input {
        border-radius: 8px 8px 0 0;
        text-align: center;
    }
    .subscribe-btn {
        width: 100%;
        border-radius: 0 0 8px 8px;
    }

    /* FAQ Section */
    .accordion-header {
        font-size: 1em;
    }
    
    .success-partners-container {
        flex-direction: column;
        text-align: center;
    }
    .success-partners-image {
        max-width: 90%;
        justify-content: center;
        margin-bottom: 30px;
    }
    .success-partners-text {
        max-width: 100%;
        text-align: center;
    }
}

