/* Responsive Styles */

/* Large screens */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Medium screens (laptops, small desktops) */
@media (max-width: 1199px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
}

/* Tablets */
@media (max-width: 991px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .values-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .audits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Mobile phones */
@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }
    
    .hero-image {
        height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .service-icon {
        height: 150px;
    }
    
    .cookie-bar {
        flex-direction: column;
    }
    
    .cookie-bar p {
        margin-bottom: 15px;
        margin-right: 0;
        text-align: center;
    }
}

/* Small mobile phones */
@media (max-width: 575px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
}
