/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        width: 95%;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-content, 
    .quality-content, 
    .sustainability-content,
    .contact-container {
        flex-direction: column;
    }
    
    .about-image, 
    .sustainability-image {
        margin-top: 30px;
    }
    
    .footer-content {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .step {
        min-width: 100%;
    }
    
    .quality-badges {
        justify-content: space-around;
    }
    
    .badge {
        width: 100px;
        height: 100px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
    
    .testimonial-slider {
        height: 250px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        height: 80vh;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-column {
        min-width: 100%;
    }
    
    .social-links {
        justify-content: center;
    }
}