/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    section {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-section {
        text-align: center;
    }
    
    .service-item,
    .about-feature,
    .coreinfo-item,
    .price-card {
        margin-bottom: 1.5rem;
    }
    
    .team-member {
        margin-bottom: 2rem;
    }
    
    .swiper-container {
        padding-bottom: 3rem;
    }
    
    .contact-content {
        padding: 1.5rem;
    }
    
    .footer-column {
        margin-bottom: 2rem;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    section {
        padding: 4rem 0;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .footer-column {
        margin-bottom: 2rem;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .service-item,
    .price-card {
        height: calc(100% - 30px);
    }
    
    .footer-column:not(:last-child) {
        margin-bottom: 2rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .service-item,
    .price-card {
        height: calc(100% - 30px);
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* General responsive adjustments */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
    
    .swiper-container {
        --swiper-autoplay-delay: 0;
    }
} 