/* Padding para todas las secciones */
.col-4.col-12-medium {
    position: relative;
    padding: 2rem;
    /* Ajusta este valor según necesites */
    color: white;
    overflow: hidden;
}

/* Fondo oscuro semitransparente sobre la imagen */
.background-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: -1;
}

/* Contenido encima del fondo */
.content {
    position: relative;
    z-index: 1;
    padding: 15px;
}