/* Media Queries for responsive design */

/* Tablet (768px and below) */
@media screen and (max-width: 768px) {
    .info-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .info-hero-content p {
        font-size: 1.2rem;
    }
    
    .info-container {
        padding: 40px 20px;
    }
    
    .service-card {
        flex-direction: column;
    }
    
    .service-icon {
        width: 100%;
        padding: 20px 0;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
        margin-bottom: 30px;
    }
    
    .process-steps {
        flex-wrap: wrap;
    }
    
    .process-step {
        flex: 0 0 calc(50% - 10px);
    }
    
    .footer-content {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .footer-logo, .footer-contact, .footer-social {
        flex: 0 0 100%;
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Mobile (480px and below) */
@media screen and (max-width: 480px) {
    .info-hero {
        height: 40vh;
    }
    
    .info-hero-content h1 {
        font-size: 2rem;
    }
    
    .info-hero-content p {
        font-size: 1rem;
    }
    
    .info-intro h2 {
        font-size: 1.8rem;
    }
    
    .info-intro p {
        font-size: 1rem;
    }
    
    .services-section h2,
    .about-section h2,
    .process-section h2 {
        font-size: 1.8rem;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .service-content h4 {
        font-size: 1rem;
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Support for extra-small screens */
@media screen and (max-width: 350px) {
    .info-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .service-content li {
        padding-left: 20px;
    }
    
    .about-text li {
        padding-left: 20px;
    }
}

/* Landscape orientation adjustments */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .info-hero {
        height: 80vh;
    }
}