/* Update hero section background */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero_background.png') no-repeat center center/cover;
    padding-top: 300px; /* Add padding to move content down */
}

/* Adjust hero content positioning */
.hero-content {
    margin-top: 100px; /* Move content down further */
}

/* Add custom styles for placeholder images until we can replace them */
.placeholder-img {
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
    font-family: var(--font-heading);
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

/* Additional responsive adjustments */
@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 24px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}
