/* Responsive Styles */

/* Tablets and smaller desktop screens */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1,
    .hero-content-centered h1 {
        font-size: 2.5rem;
    }
    
    .hero-content-centered {
        max-width: 700px;
    }
    
    .services-grid,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .stats-container {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex-basis: 33.333%;
        margin-bottom: 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Tablets portrait and large mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-section {
        height: 70vh;
    }
    
    .hero-content,
    .hero-content-centered {
        max-width: 100%;
        width: 90%;
    }
    
    .hero-content h1,
    .hero-content-centered h1 {
        font-size: 2.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Mobile Menu */
    .mobile-menu-toggle {
        display: block;
    }
    
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
    }
    
    .bar {
        width: 100%;
        height: 3px;
        background-color: var(--primary-color);
        transition: all 0.3s;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        padding: 2rem 0;
        transition: right 0.3s ease;
        overflow-y: auto;
    }
    
    .main-nav.mobile-active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-list li {
        margin: 0 0 1.5rem 0;
    }
    
    .nav-list a {
        font-size: 1.2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Small mobile devices */
@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-section {
        height: auto;
        min-height: 400px;
    }
    
    .hero-content,
    .hero-content-centered {
        padding: 1.5rem;
    }
    
    .hero-content h1,
    .hero-content-centered h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p,
    .hero-content-centered p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .services-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        flex-basis: 100%;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    section {
        padding: 3rem 0;
    }
}
