/* Tablet and smaller desktop */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 44px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-content {
        flex-direction: column;
    }
    
    .features-text {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .features-image {
        width: 100%;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .navbar-toggler {
        background-color: var(--primary-light);
        border: 2px solid var(--primary);
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 111, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .hero {
        padding-top: 100px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .button-group {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .cta-section h2 {
        font-size: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-content [class*="col-"] {
        margin-bottom: 30px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}
