/* Mobile Styles */
@media screen and (max-width: 1024px) {
    .hero .container,
    .about-content,
    .locations-content,
    .contact-content,
    .footer-content {
        flex-direction: column;
    }
    
    .hero-content,
    .hero-image,
    .about-image,
    .about-text,
    .locations-map,
    .locations-list,
    .contact-info,
    .contact-form,
    .footer-logo,
    .footer-links {
        max-width: 100%;
        width: 100%;
    }
    
    .hero-image,
    .about-image,
    .locations-map {
        margin-top: 30px;
    }
    
    .contact-form {
        margin-top: 40px;
    }
    
    .footer-links {
        margin-top: 30px;
    }
}

@media screen and (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services-grid,
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .card-item {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .featured {
        transform: none;
    }
    
    .featured:hover {
        transform: translateY(-10px);
    }
    
    .footer-links {
        flex-direction: column;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 480px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .about-features li {
        font-size: 0.9rem;
    }
    
    .contact-item {
        flex-direction: column;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .contact-text {
        text-align: center;
    }
} 