/* Desktop Layouts */
@media (min-width: 768px) {
    #mobile-header {
        display: none;
    }
    #desktop-header {
        display: block;
    }
    #mobile-footer {
        display: none;
    }
    #desktop-footer {
        display: block;
    }

    h1 { font-size: 4.2em; }
    h2 { font-size: 3em; }

    /* Hero Section */
    .hero-text {
        max-width: 55%;
        text-align: right;
    }
    .hero-image {
        max-width: 45%;
    }

    /* Real Food Ingredients */
    .real-food-container {
        flex-direction: row;
    }
    .real-food-image {
        order: 2; /* Image on right */
        justify-content: flex-start; /* Adjust image position for RTL */
    }
    .real-food-text {
        order: 1; /* Text on left */
        text-align: right;
    }

    /* Why Choose Us */
    .why-choose-us-container {
        flex-direction: row;
    }
    .why-choose-us-text {
        order: 2; /* Text on right */
        text-align: right;
    }
    .why-choose-us-details {
        order: 1; /* Details on left */
        flex-direction: row-reverse; /* Swap product display and features for RTL */
    }

    /* Contact Section */
    .contact-container {
        flex-direction: row;
    }
    .contact-form-wrapper {
        order: 2; /* Form on right */
        max-width: 60%;
        text-align: right;
    }
    .contact-image {
        order: 1; /* Image on left */
        max-width: 40%;
        justify-content: flex-end; /* Adjust image position for RTL */
    }
}
