.hero-section {
    position: relative;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.hero-section > .container {
    position: relative;
    z-index: 2;
}
.section {
    padding: var(--spacing-12) 0;
}
.cta-section {
    background-color: var(--color-gray-100);
    padding: var(--spacing-12) 0;
}
@media (max-width: 767px) {
    .grid-cols-1.md\:grid-cols-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .hero-section {
        height: 50vh;
    }
    h1 {
        font-size: var(--font-size-3xl);
    }
}