.hero-servicio-block {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #0F172A;
    background-size: cover;
    background-position: center;
    padding: 140px 0;
}

.hero-servicio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 100%);
    z-index: 1;
}

.hero-servicio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 992px) {
    .hero-servicio-container {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.hero-servicio-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-servicio-title {
    font-family: var(--wp--preset--font-family--heading, "Montserrat", sans-serif) !important;
    font-size: 3.5rem !important;
    /* Slightly larger than slider but closer than 5rem */
    font-weight: 800 !important;
    line-height: 1.1 !important;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

.hero-servicio-description {
    font-family: var(--wp--preset--font-family--body, "Inter", sans-serif) !important;
    font-size: 1.25rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0;
    border-left: 2px solid #EC4899;
    padding-left: 1.5rem;
}

/* Specific colors based on theme if needed */

@media (max-width: 768px) {
    .hero-servicio-block {
        min-height: 70vh;
        padding: 100px 0;
    }

    .hero-servicio-title {
        font-size: 2.25rem !important;
    }

    .hero-servicio-description {
        font-size: 1.1rem !important;
    }
}