/* Responsive Styles */

/* Large devices (laptops/desktops, up to 1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

/* Medium devices (tablets, up to 992px) */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .process-steps {
        flex-direction: column;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .step:not(:last-child):after {
        display: none;
    }
    
    .footer-content {
        gap: 30px;
    }
}

/* Small devices (landscape phones, up to 768px) */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .header-content {
        position: relative;
    }
    
    .main-nav {
        display: none;
    }
    
    .main-nav.mobile-menu-open {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--primary);
        z-index: 200;
        padding: 60px 20px;
    }
    
    .main-nav.mobile-menu-open ul {
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav.mobile-menu-open li {
        margin: 15px 0;
    }
    
    .main-nav.mobile-menu-open a {
        color: white;
        font-size: 1.3rem;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 300;
    }
    
    .mobile-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 30px;
        height: 30px;
        cursor: pointer;
    }
    
    .mobile-close span {
        display: block;
        width: 30px;
        height: 3px;
        background-color: white;
        border-radius: 2px;
        position: absolute;
        top: 50%;
    }
    
    .mobile-close span:first-child {
        transform: rotate(45deg);
    }
    
    .mobile-close span:last-child {
        transform: rotate(-45deg);
    }
    
    .header-cta {
        display: none;
    }
    
    .hero {
        min-height: 400px;
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .service-box {
        min-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-info, .footer-contact, .footer-links {
        min-width: 100%;
    }
}

/* Extra small devices (phones, up to 576px) */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 50px 0;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 90px 0 50px;
        min-height: 350px;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .benefits li {
        padding-left: 25px;
    }
    
    .benefits li:before {
        width: 14px;
        height: 14px;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 15px;
    }
}
