/* Hero Background Image */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('/assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Section spacing adjustments */
.section {
    padding: 40px 0;
}

.section-title {
    margin-bottom: 24px;
}

/* Grid improvements for better spacing */
.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        min-height: 65vh;
        padding-top: 100px;
        padding-bottom: 0;
    }

    .hero__content {
        margin-top: 0 !important;
    }

    .section {
        padding: 30px 0;
    }
}