/* Mobile-specific hero section adjustments */
@media (max-width: 768px) {
    /* Basic structure */
    .hero {
        min-height: auto !important;
        padding: 100px 0 60px !important;
    }
    
    /* Fix content ordering */
    .hero-content {
        display: flex !important;
        flex-direction: column !important;
    }
    
    /* Put text below the image */
    .hero-text {
        order: 2 !important;
        padding-top: 20px !important;
    }
    
    /* Put image first */
    .hero-image {
        order: 1 !important;
        margin-top: 40px !important; /* Increase space from top */
        max-width: 80% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Override any transform effects */
    .hero-image img {
        transform: none !important;
        transition: none !important;
    }
    
    /* Center text and buttons */
    .hero-text, .cta-buttons {
        text-align: center !important;
        justify-content: center !important;
    }
}

/* Smaller screens */
@media (max-width: 480px) {
    .hero {
        padding: 90px 0 40px !important;
    }
    
    .hero-image {
        margin-top: 30px !important;
    }
    
    .company-name {
        font-size: 2.8rem !important;
    }
    
    .cta-buttons {
        flex-direction: column !important;
        width: 100% !important;
    }
    
    .btn {
        width: 100% !important;
        margin-bottom: 10px !important;
    }
}