/* 
 * Responsive Styles for domain.com
 */

/* Large screens (desktops less than 1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 992px;
    }
}

/* Medium screens (tablets less than 992px) */
@media (max-width: 992px) {
    .container {
        max-width: 768px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto 30px;
    }
    
    .steps-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    
    .steps-container:before {
        display: none;
    }
    
    .step {
        width: 45%;
    }
}

/* Small screens (landscape phones less than 768px) */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .site-header .container {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    
    /* Desktop only elements - hide on mobile */
    .desktop-only {
        display: none !important;
    }
    
    .hero {
        padding: 70px 0;
    }
    
    .hero h2 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .form-container {
        padding: 25px;
    }
    
    .step {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* Extra small screens (portrait phones less than 576px) */
@media (max-width: 576px) {
    .hero h2 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .testimonial-item {
        padding: 20px;
    }
    
    .form-buttons .btn {
        width: 100%;
    }
}