/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .image-content {
        padding: 30px;
    }
    
    .image-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
        min-width: 180px;
    }
    
    .image-section {
        flex-direction: column;
    }
    
    .how-container {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        margin-bottom: 40px;
    }
    
    .image-content {
        padding: 25px 20px;
    }
    
    .image-content h2 {
        font-size: 1.6rem;
    }
    
    .image-content p,
    .image-content ul li {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    header {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .why-container,
    .features-container,
    .benefits-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .image-placeholder {
        height: 250px;
    }
    
    .image-content h2 {
        font-size: 1.5rem;
    }
}

/* Prevent horizontal scrolling */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

img, svg {
    max-width: 100%;
    height: auto;
}

/* Fix for mobile viewport */
@viewport {
    width: device-width;
    zoom: 1.0;
}

@-ms-viewport {
    width: device-width;
}