.gestion-procesos {
    max-width: 60em;
    padding: 0 2em 0 2em;
    margin-left: auto;
    margin-right: auto;
}

.gestion-procesos .titulo-cabecera {
    padding-top: 1em;
    font-size: 36px;
    font-weight: 700;
}

.gestion-procesos .titulo {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    font-size: 24px;
    font-weight: 500;
}

.gestion-procesos .texto {
    font-size: 18px;
}

.gestion-procesos ul {
  list-style: none; /* Remove default bullets */
}
.gestion-procesos li::before{
    content: "\2022"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: #C22821;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}

.gestion-procesos .beneficio-fila {
    display: flex;
}

.gestion-procesos .beneficio {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
    width: 49%;
}

.gestion-procesos .titulo-beneficio {
    font-size: 18px;
    color: #C22821;
    margin-bottom: 0.75em;
    font-weight: 500;
}

.gestion-procesos .contador-beneficio {
    margin-right: 0.2em;
    padding: 0.1em 0.2em 0.1em 0.2em ;
    border: solid #C22821 2px;
    border-radius: 3px;
}

.gestion-procesos .columnas-container {
    display: flex;
}

.gestion-procesos .columna-1 {
    width: 70%;
    padding-right: 0.5em;
}

.gestion-procesos .columna-2 {
    width: 30%;
    text-align: center;
}

.gestion-procesos .columna-2 img {
    width: 100%;
}

@media (max-width: 800px) {
    .gestion-procesos .titulo-cabecera {
        font-size: 24px;
    }
    
    .gestion-procesos .titulo {
        font-size: 20px;
    }
    
    .gestion-procesos .texto {
        font-size: 16px;
    }
    
    .gestion-procesos .titulo-beneficio {
        font-size: 18px;
        color: #C22821;
    }
    
    .gestion-procesos .beneficio-fila {
        display: block;
    }
    
    .gestion-procesos .beneficio {
        width: 100%;
    }
    
    .gestion-procesos .columnas-container {
        display: block;
    }
    
    .gestion-procesos .columna-1 {
        width: 100%;
        padding-right: 0;
    }
    
    .gestion-procesos .columna-2 {
        width: 100%;
    }
    
    .gestion-procesos .columna-2 img {
        width: 80%;
    }
}