.hero-image {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    background-color: #403f41;
    overflow: hidden;
}

.hero-image-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-image-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-has-bg .hero-image-overlay {
    position: relative;
    z-index: 2;
}

.hero-image-overlay {
    width: 100%;
    padding: 3rem 0;
}

.hero-image-has-bg .hero-image-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(64, 63, 65, 0.75) 0%,
        rgba(12, 147, 68, 0.35) 100%
    );
    z-index: -1;
}

.hero-image-content {
    color: #fff;
}

.hero-image-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-image-text {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.hero-image-text p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-image-cta .btn {
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    background-color: #0c9344;
    border-color: #0c9344;
    color: #fff;
    padding: 0.75rem 2rem;
    transition: all 0.25s ease;
}

.hero-image-cta .btn:hover {
    background-color: #fff;
    border-color: #fff;
    color: #0c9344;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .hero-image {
        min-height: 450px;
    }

    .hero-image-title {
        font-size: 3rem;
    }

    .hero-image-overlay {
        padding: 4rem 0;
    }
}

@media (min-width: 1200px) {
    .hero-image {
        min-height: 550px;
    }

    .hero-image-title {
        font-size: 4rem;
    }

    .hero-image-overlay {
        padding: 5rem 0;
    }
}
