/* Hero Image Enhancements */
/* All hover effects removed as requested */

/* Add a subtle gradient overlay to improve text readability if needed */
.hero-section {
    position: relative;
}

/* Responsive adjustments for hero image */
@media (max-width: 992px) {
    .hero-image {
        max-width: 100%;
        margin-top: 30px;
    }
    
    .hero-image img {
        max-height: 450px;
    }
}

@media (max-width: 768px) {
    .hero-image img {
        max-height: 400px;
    }
}
