/* ============================================
   RESPONSIVE CSS - LEIDERS INZICHT
   ============================================ */

/* Mobile First - Extra responsiveness */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem !important;
    }
    
    .section-title {
        font-size: 1.8rem !important;
    }
    
    .hero-content {
        padding: 0 1rem !important;
    }
}

@media (max-width: 768px) {
    .hero-carousel-container .carousel-controls {
        bottom: 1rem !important;
        gap: 1rem !important;
    }
    
    .testimonials-carousel {
        margin: 0 1rem !important;
    }
    
    .methodieken-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

/* Desktop improvements */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}