/* Responsive Styles */

/* Tablet Devices */
@media (max-width: 991px) {
    /* General */
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    /* About Section */
    .about-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-image, .about-content {
        flex: 100%;
    }
    
    /* Advantages Section */
    .advantages-container {
        flex-wrap: wrap;
    }
    
    .advantage-item {
        flex: 0 0 calc(50% - 15px);
        margin-bottom: 30px;
    }
    
    /* Services Section */
    .services-container {
        flex-wrap: wrap;
    }
    
    .service-card {
        flex: 0 0 calc(50% - 15px);
        margin-bottom: 30px;
    }
    
    /* Footer */
    .footer-content {
        flex-wrap: wrap;
    }
    
    .footer-info {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    .footer-contact, .footer-links {
        flex: 0 0 calc(50% - 20px);
    }
}

/* Mobile Devices */
@media (max-width: 767px) {
    /* General */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    /* Header */
    .main-nav .desktop-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .menu-icon {
        font-size: 1.5rem;
        color: var(--secondary-color);
        text-decoration: none;
    }
    
    .mobile-menu {
        display: block;
        background-color: var(--white);
        list-style-type: none;
        padding: 20px;
        margin-bottom: 20px;
        border-top: 1px solid #eee;
    }
    
    .mobile-menu li {
        margin-bottom: 15px;
    }
    
    .mobile-menu li a {
        text-decoration: none;
        color: var(--text-color);
        font-weight: 500;
        display: block;
        transition: var(--transition);
    }
    
    .mobile-menu li a:hover {
        color: var(--primary-color-end);
    }
    
    /* Hero Section */
    .hero-section {
        height: auto;
        min-height: 500px;
    }
    
    /* Advantages Section */
    .advantage-item {
        flex: 0 0 100%;
    }
    
    /* Services Section */
    .service-card {
        flex: 0 0 100%;
    }
    
    /* Contact Form */
    .contact-container {
        padding: 30px 20px;
    }
    
    /* Footer */
    .footer-contact, .footer-links {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    /* Cookie Consent */
    .cookie-consent .container {
        flex-direction: column;
        text-align: center;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    /* General */
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    /* Hero Section */
    .hero-content p {
        font-size: 1rem;
    }
    
    /* About Section */
    .about-section {
        padding: 50px 0;
    }
    
    /* Contact Form */
    .submit-btn {
        padding: 12px;
    }
}
